diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2010-08-24 13:39:37 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2010-08-24 13:39:37 +0000 |
commit | c161c4dd10ba225a35fed081c68ad54b6fa225cb (patch) | |
tree | 28e06ba8294d742e777d6d782fa436e9d84b1e5c | |
parent | 600f607aef5b555ce32a82f81cefbe0ecdf8b6b1 (diff) | |
download | mandoc-c161c4dd10ba225a35fed081c68ad54b6fa225cb.tar.gz |
Strip out `\k' escape.
-rw-r--r-- | man.7 | 2 | ||||
-rw-r--r-- | mandoc.c | 2 | ||||
-rw-r--r-- | mdoc.7 | 2 | ||||
-rw-r--r-- | out.c | 2 |
4 files changed, 7 insertions, 1 deletions
@@ -940,6 +940,8 @@ The .Pq zero-length character , .Sq \ew .Pq string length , +.Sq \ek +.Pq horizontal position marker , and .Sq \es .Pq text size @@ -138,9 +138,9 @@ mandoc_special(char *p) /* FALLTHROUGH */ case ('n'): /* FALLTHROUGH */ +#endif case ('k'): /* FALLTHROUGH */ -#endif case ('M'): /* FALLTHROUGH */ case ('m'): @@ -2848,6 +2848,8 @@ The .Pq zero-length character , .Sq \ew .Pq string length , +.Sq \ek +.Pq horizontal position marker , and .Sq \es .Pq text size @@ -220,6 +220,8 @@ a2roffdeco(enum roffdeco *d, const char **word, size_t *sz) break; } break; + case ('k'): + /* FALLTHROUGH */ case ('M'): /* FALLTHROUGH */ case ('m'): |