summaryrefslogtreecommitdiffstats
path: root/roff.h
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2010-05-17 00:06:36 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2010-05-17 00:06:36 +0000
commit218a7feb401f88a33b42705d4480f2b85b9044d5 (patch)
tree1a5c7508cb015bdae317cdd3594c23ed14d4032a /roff.h
parent524dc4dbf98fb75004063063e8aa6cefab73cfc7 (diff)
downloadmandoc-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.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/roff.h b/roff.h
index 2d94080d..bc2b50c1 100644
--- a/roff.h
+++ b/roff.h
@@ -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