aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/chars.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2009-11-05 07:21:01 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2009-11-05 07:21:01 +0000
commitabe164b5b7d160faacfd0c626e28750e2bf31eef (patch)
treec4a6e4d85b36b11547ae335c113ee0d8021381f9 /chars.c
parentfa112dd09499ac23faf67420007920ff5b1a983e (diff)
downloadmandoc-abe164b5b7d160faacfd0c626e28750e2bf31eef.tar.gz
mandoc-abe164b5b7d160faacfd0c626e28750e2bf31eef.tar.zst
mandoc-abe164b5b7d160faacfd0c626e28750e2bf31eef.zip
Added functionality of -Tascii non-breaking `\~' space.
Diffstat (limited to 'chars.c')
-rw-r--r--chars.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/chars.c b/chars.c
index 7ce4666d..580a1caf 100644
--- a/chars.c
+++ b/chars.c
@@ -1,4 +1,4 @@
-/* $Id: chars.c,v 1.12 2009/11/01 07:44:32 kristaps Exp $ */
+/* $Id: chars.c,v 1.13 2009/11/05 07:21:01 kristaps Exp $ */
/*
* Copyright (c) 2009 Kristaps Dzonsons <kristaps@kth.se>
*
@@ -47,9 +47,10 @@ struct ln {
#define BOTH(w, x, y, z, a, b) \
{ NULL, (w), (y), (a), (x), (z), (b), CHARS_BOTH },
-static struct ln lines[LINES_MAX] = {
+#define CHAR_TBL_START static struct ln lines[LINES_MAX] = {
+#define CHAR_TBL_END };
+
#include "chars.in"
-};
struct tbl {
enum chars type;