summaryrefslogtreecommitdiffstats
path: root/mandoc.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2010-08-29 11:28:09 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2010-08-29 11:28:09 +0000
commit5b800687386963e8ac308abec4e60dace556292c (patch)
tree1f2c26dfe80429ff3782be9881718ccf4ad4a8f2 /mandoc.c
parent97a51cb241aac04f0ee17560bc9c91327c02c377 (diff)
downloadmandoc-5b800687386963e8ac308abec4e60dace556292c.tar.gz
Remove overstrike `\o'. This isn't the best solution because we really
should be printing the contents, but for the time being, this is good enough.
Diffstat (limited to 'mandoc.c')
-rw-r--r--mandoc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/mandoc.c b/mandoc.c
index c93ec25d..cd84d400 100644
--- a/mandoc.c
+++ b/mandoc.c
@@ -59,8 +59,6 @@ mandoc_special(char *p)
/* FALLTHROUGH */
case ('R'):
/* FALLTHROUGH */
- case ('o'):
- /* FALLTHROUGH */
case ('N'):
/* FALLTHROUGH */
case ('l'):
@@ -199,6 +197,8 @@ mandoc_special(char *p)
return(*p ? (int)(p - sv) : 0);
}
break;
+ case ('o'):
+ /* FALLTHROUGH */
case ('w'):
if ('\'' == *p++) {
term = '\'';