aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/chars.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2011-04-20 22:50:22 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2011-04-20 22:50:22 +0000
commita8bf4b0fd555d5f2c02407d5e3f97a00d18c6296 (patch)
tree10bc45178bfd92a8edd88d65cb29e223635bcdf0 /chars.c
parent33c39adb2b4cab7469a2d975f4437c5ea1906a51 (diff)
downloadmandoc-a8bf4b0fd555d5f2c02407d5e3f97a00d18c6296.tar.gz
mandoc-a8bf4b0fd555d5f2c02407d5e3f97a00d18c6296.tar.zst
mandoc-a8bf4b0fd555d5f2c02407d5e3f97a00d18c6296.zip
Add \*(Ai (ANSI) and \*(Px (POSIX) predefined strings, which are part of
groff's tmac.doc package. Originally noted by Matthew Dempsky. Feedback by Jason McIntyre, joerg@, and schwarze@. Also add some documentation about predefined strings, tweaked by schwarze@.
Diffstat (limited to 'chars.c')
-rw-r--r--chars.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/chars.c b/chars.c
index 03e44910..416d95b5 100644
--- a/chars.c
+++ b/chars.c
@@ -1,4 +1,4 @@
-/* $Id: chars.c,v 1.34 2011/03/22 10:13:01 kristaps Exp $ */
+/* $Id: chars.c,v 1.35 2011/04/20 22:50:22 kristaps Exp $ */
/*
* Copyright (c) 2009, 2010 Kristaps Dzonsons <kristaps@bsd.lv>
* Copyright (c) 2011 Ingo Schwarze <schwarze@openbsd.org>
@@ -41,7 +41,7 @@ struct ln {
#define CHARS_BOTH (CHARS_CHAR | CHARS_STRING)
};
-#define LINES_MAX 351
+#define LINES_MAX 353
#define CHAR(in, ch, code) \
{ NULL, (in), (ch), (code), CHARS_CHAR },