aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/mandoc.h
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2010-05-16 22:28:33 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2010-05-16 22:28:33 +0000
commitce6c60c32bf1ef48cae539a850d142548b24d8ad (patch)
tree67f9314d3b2e5e1ccf9a2d368b8eadbe6eba8879 /mandoc.h
parentf34d66a2879319e93c3b35ed619dbb00a3a7885f (diff)
downloadmandoc-ce6c60c32bf1ef48cae539a850d142548b24d8ad.tar.gz
mandoc-ce6c60c32bf1ef48cae539a850d142548b24d8ad.tar.zst
mandoc-ce6c60c32bf1ef48cae539a850d142548b24d8ad.zip
`ig' support in all its glory. Try
.ig ig asdf .ig fdsa .. or .ig if asdf .if n \ foo for a laugh. It all works. Lots of regression tests supporting this and documentation for the same.
Diffstat (limited to 'mandoc.h')
-rw-r--r--mandoc.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/mandoc.h b/mandoc.h
index 589ddbc8..99957f8d 100644
--- a/mandoc.h
+++ b/mandoc.h
@@ -1,4 +1,4 @@
-/* $Id: mandoc.h,v 1.3 2010/05/16 19:08:11 kristaps Exp $ */
+/* $Id: mandoc.h,v 1.4 2010/05/16 22:28:33 kristaps Exp $ */
/*
* Copyright (c) 2010 Kristaps Dzonsons <kristaps@bsd.lv>
*
@@ -22,10 +22,10 @@ __BEGIN_DECLS
enum mandocerr {
MANDOCERR_OK,
MANDOCERR_SCOPEEXIT, /* scope open on exit */
- MANDOCERR_NOSCOPE, /* request scope close w/none open */
- MANDOCERR_NOARGS, /* macro requires argument(s) */
#define MANDOCERR_WARNING MANDOCERR_SCOPEEXIT
+ MANDOCERR_NOSCOPE, /* request scope close w/none open */
+ MANDOCERR_NOARGS, /* macro requires argument(s) */
MANDOCERR_ARGSLOST, /* line arguments will be lost */
#define MANDOCERR_ERROR MANDOCERR_ARGSLOST