summaryrefslogtreecommitdiffstats
path: root/libmdoc.h
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2011-04-19 16:38:48 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2011-04-19 16:38:48 +0000
commit28f9fee25bc0d8859b0400d14433644687182bfb (patch)
tree5dc36e4ffc02fad26843da2c5000a69caab6f42f /libmdoc.h
parent0d4d66664cc5e466a53a90e48693b01d4f071cbc (diff)
downloadmandoc-28f9fee25bc0d8859b0400d14433644687182bfb.tar.gz
Clean up parsing of delimiters in -mdoc. First, remove the "dowarn"
variable from mandoc_getarg() so that it prints the warning every time. Then, remove the warning from args_checkpunct(). This way, warnings are being posted at the correct time. This makes the flag argument to mdoc_zargs() superfluous, so make it be zero when it's invoked. Finally, move the args() flags into mdoc_argv.c and make them enums.
Diffstat (limited to 'libmdoc.h')
-rw-r--r--libmdoc.h8
1 files changed, 1 insertions, 7 deletions
diff --git a/libmdoc.h b/libmdoc.h
index 2b4b2b70..9cdf598b 100644
--- a/libmdoc.h
+++ b/libmdoc.h
@@ -133,14 +133,8 @@ void mdoc_argv_free(struct mdoc_arg *);
enum margserr mdoc_args(struct mdoc *, int,
int *, char *, enum mdoct, char **);
enum margserr mdoc_zargs(struct mdoc *, int,
- int *, char *, int, char **);
-#define ARGS_DELIM (1 << 1)
-#define ARGS_TABSEP (1 << 2)
-#define ARGS_NOWARN (1 << 3)
-
+ int *, char *, char **);
int mdoc_macroend(struct mdoc *);
-
-#define DELIMSZ 6 /* hint: max possible size of a delimiter */
enum mdelim mdoc_isdelim(const char *);
__END_DECLS