diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2011-04-19 16:38:48 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2011-04-19 16:38:48 +0000 |
commit | 28f9fee25bc0d8859b0400d14433644687182bfb (patch) | |
tree | 5dc36e4ffc02fad26843da2c5000a69caab6f42f /libmdoc.h | |
parent | 0d4d66664cc5e466a53a90e48693b01d4f071cbc (diff) | |
download | mandoc-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.h | 8 |
1 files changed, 1 insertions, 7 deletions
@@ -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 |