diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2011-04-20 22:50:22 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2011-04-20 22:50:22 +0000 |
commit | 60f32354c113d9af86f70f30e024d6e1eca66e63 (patch) | |
tree | 691a1f7e8cbe510737193509a49827f0d2ed097f /chars.c | |
parent | 28f9fee25bc0d8859b0400d14433644687182bfb (diff) | |
download | mandoc-60f32354c113d9af86f70f30e024d6e1eca66e63.tar.gz |
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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 }, |