diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2010-08-29 11:28:09 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2010-08-29 11:28:09 +0000 |
commit | 5b800687386963e8ac308abec4e60dace556292c (patch) | |
tree | 1f2c26dfe80429ff3782be9881718ccf4ad4a8f2 | |
parent | 97a51cb241aac04f0ee17560bc9c91327c02c377 (diff) | |
download | mandoc-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.
-rw-r--r-- | man.7 | 2 | ||||
-rw-r--r-- | mandoc.c | 4 | ||||
-rw-r--r-- | mdoc.7 | 2 | ||||
-rw-r--r-- | out.c | 2 |
4 files changed, 8 insertions, 2 deletions
@@ -944,6 +944,8 @@ The .Pq string length , .Sq \ek .Pq horizontal position marker , +.Sq \eo +.Pq text overstrike , and .Sq \es .Pq text size @@ -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 = '\''; @@ -2852,6 +2852,8 @@ The .Pq string length , .Sq \ek .Pq horizontal position marker , +.Sq \eo +.Pq text overstrike , and .Sq \es .Pq text size @@ -315,6 +315,8 @@ a2roffdeco(enum roffdeco *d, const char **word, size_t *sz) } else lim = 1; break; + case ('o'): + /* FALLTHROUGH */ case ('w'): if ('\'' == wp[i++]) { term = '\''; |