diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2010-05-17 00:06:36 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2010-05-17 00:06:36 +0000 |
commit | 218a7feb401f88a33b42705d4480f2b85b9044d5 (patch) | |
tree | 1a5c7508cb015bdae317cdd3594c23ed14d4032a /roff.h | |
parent | 524dc4dbf98fb75004063063e8aa6cefab73cfc7 (diff) | |
download | mandoc-218a7feb401f88a33b42705d4480f2b85b9044d5.tar.gz |
libroff now is aware of which sub-nodes should be interpreted even in a
conditional-negative context so as to preserve structural integrity.
Initial "rules" (deny/allow) are now inherited for future work in
evaluating conditionals.
Lint-fix noted by Joerg.
Added regression tests for zany constructs.
Diffstat (limited to 'roff.h')
-rw-r--r-- | roff.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -21,7 +21,7 @@ enum rofferr { ROFF_CONT, /* continue processing line */ ROFF_RERUN, /* re-run roff interpreter with offset */ ROFF_IGN, /* ignore current line */ - ROFF_ERR, /* badness: puke and stop */ + ROFF_ERR /* badness: puke and stop */ }; __BEGIN_DECLS |