diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2011-03-17 01:23:28 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2011-03-17 01:23:28 +0000 |
commit | 684938dc1d7c8591d0b63657a1d36b25b24eaea8 (patch) | |
tree | 10a58e41eb97d1516b26419cab0bebf1ed50306c /mdoc_strings.c | |
parent | d44be71f515f8494313986bc8379bc35f75dc802 (diff) | |
download | mandoc-684938dc1d7c8591d0b63657a1d36b25b24eaea8.tar.gz |
Make args_checkpunct() use mdoc_isdelim() instead of mdoc_iscdelim(),
which is wrong. Then remove mdoc_iscdelim() alltogether.
Diffstat (limited to 'mdoc_strings.c')
-rw-r--r-- | mdoc_strings.c | 67 |
1 files changed, 27 insertions, 40 deletions
diff --git a/mdoc_strings.c b/mdoc_strings.c index 9bcab1df..cd4654b4 100644 --- a/mdoc_strings.c +++ b/mdoc_strings.c @@ -54,53 +54,40 @@ static const char * const secnames[SEC__MAX] = { NULL }; -/* - * FIXME: this is repeated in print_text() (html.c) and term_word() - * (term.c). - */ -enum mdelim -mdoc_iscdelim(char p) -{ - - switch (p) { - case('('): - /* FALLTHROUGH */ - case('['): - return(DELIM_OPEN); - case('|'): - return(DELIM_MIDDLE); - case('.'): - /* FALLTHROUGH */ - case(','): - /* FALLTHROUGH */ - case(';'): - /* FALLTHROUGH */ - case(':'): - /* FALLTHROUGH */ - case('?'): - /* FALLTHROUGH */ - case('!'): - /* FALLTHROUGH */ - case(')'): - /* FALLTHROUGH */ - case(']'): - return(DELIM_CLOSE); - default: - break; - } - - return(DELIM_NONE); -} - - enum mdelim mdoc_isdelim(const char *p) { if ('\0' == p[0]) return(DELIM_NONE); + if ('\0' == p[1]) - return(mdoc_iscdelim(p[0])); + switch (p[0]) { + case('('): + /* FALLTHROUGH */ + case('['): + return(DELIM_OPEN); + case('|'): + return(DELIM_MIDDLE); + case('.'): + /* FALLTHROUGH */ + case(','): + /* FALLTHROUGH */ + case(';'): + /* FALLTHROUGH */ + case(':'): + /* FALLTHROUGH */ + case('?'): + /* FALLTHROUGH */ + case('!'): + /* FALLTHROUGH */ + case(')'): + /* FALLTHROUGH */ + case(']'): + return(DELIM_CLOSE); + default: + return(DELIM_NONE); + } /* * XXX; account for groff bubu where the \*(Ba reserved string |