summaryrefslogtreecommitdiffstats
path: root/mdoc_strings.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2010-05-09 21:06:50 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2010-05-09 21:06:50 +0000
commit189ba0d64a17f066dc69b5c509c0482f6c65327c (patch)
tree26a39ef73817c8729ab70c8c78dd31c2f5aa3518 /mdoc_strings.c
parent5ff5a51fb08323eaf55f975580b636f10b0bca6f (diff)
downloadmandoc-189ba0d64a17f066dc69b5c509c0482f6c65327c.tar.gz
Explicitly account for \*(Ba when checking for delims. Noted by Jason McIntyre via Ingo Schwarze.
Diffstat (limited to 'mdoc_strings.c')
-rw-r--r--mdoc_strings.c16
1 files changed, 11 insertions, 5 deletions
diff --git a/mdoc_strings.c b/mdoc_strings.c
index 0b1847fd..b895cbe9 100644
--- a/mdoc_strings.c
+++ b/mdoc_strings.c
@@ -70,7 +70,7 @@ mdoc_iscdelim(char p)
{
switch (p) {
- case('|'): /* FIXME! */
+ case('|'):
/* FALLTHROUGH */
case('('):
/* FALLTHROUGH */
@@ -104,11 +104,17 @@ int
mdoc_isdelim(const char *p)
{
- if (0 == *p)
+ if ('\0' == p[0])
return(0);
- if (0 != *(p + 1))
- return(0);
- return(mdoc_iscdelim(*p));
+ if ('\0' == p[1])
+ return(mdoc_iscdelim(p[0]));
+
+ /*
+ * XXX; account for groff bubu where the \*(Ba reserved string
+ * is treated in exactly the same way as the vertical bar. This
+ * is the only function that checks for this.
+ */
+ return(0 == strcmp(p, "\\*(Ba"));
}