aboutsummaryrefslogtreecommitdiffstatshomepage
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
commit3ea3625363ef1d13288de47e35bfb037d130d3f5 (patch)
treeba1dcb8bf0a2e8887ecea85e1ff8b5f86cd45aa2 /mandoc.c
parent2a358f30576790eecbdef4454e686e29f2e25e55 (diff)
downloadmandoc-3ea3625363ef1d13288de47e35bfb037d130d3f5.tar.gz
mandoc-3ea3625363ef1d13288de47e35bfb037d130d3f5.tar.zst
mandoc-3ea3625363ef1d13288de47e35bfb037d130d3f5.zip
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.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/mandoc.c b/mandoc.c
index b8d07d07..5598ca81 100644
--- a/mandoc.c
+++ b/mandoc.c
@@ -1,4 +1,4 @@
-/* $Id: mandoc.c,v 1.33 2010/08/24 13:56:51 kristaps Exp $ */
+/* $Id: mandoc.c,v 1.34 2010/08/29 11:28:09 kristaps Exp $ */
/*
* Copyright (c) 2008, 2009, 2010 Kristaps Dzonsons <kristaps@bsd.lv>
*
@@ -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 = '\'';