diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2010-05-25 12:37:20 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2010-05-25 12:37:20 +0000 |
commit | bd60b6e6dde1b45c862a7cb7092e5a6985629c1f (patch) | |
tree | 1b4eb8fbcedf0b30869618fd4adb0e76fcc58f91 /mandoc.h | |
parent | 67f57cab47c6371e6a42d8d6952b35485c7b0b85 (diff) | |
download | mandoc-bd60b6e6dde1b45c862a7cb7092e5a6985629c1f.tar.gz |
Modified version of Ingo Schwarze's patch for hyphen-breaking.
Breakable hyphens are cued in the back-ends (with ASCII_HYPH) and acted
upon in term.c or ignored in html.c.
Also cleaned up XML decl printing (no need for extra vars).
Diffstat (limited to 'mandoc.h')
-rw-r--r-- | mandoc.h | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -17,6 +17,10 @@ #ifndef MANDOC_H #define MANDOC_H +#define ASCII_NBRSP 31 /* non-breaking space */ +#define ASCII_HYPH 30 /* breakable hyphen */ + + __BEGIN_DECLS enum mandocerr { |