diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2011-05-15 15:47:46 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2011-05-15 15:47:46 +0000 |
commit | de205044ce0e8b0414ab85bbd5e600391fe34e98 (patch) | |
tree | c8ac103de72d9177c7408747b5fee48d708a206a /html.c | |
parent | 877bef0b9533150581c911aff80cfbb71c13de8e (diff) | |
download | mandoc-de205044ce0e8b0414ab85bbd5e600391fe34e98.tar.gz |
Fix missing support for \N'n' when calculating string widths in -Tascii
(oops). Do the same for -Thtml (oops^2).
Diffstat (limited to 'html.c')
-rw-r--r-- | html.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -316,9 +316,10 @@ html_strlen(const char *cp) switch (mandoc_escape(&cp, &seq, &ssz)) { case (ESCAPE_ERROR): return(sz); + case (ESCAPE_NUMBERED): + /* FALLTHROUGH */ case (ESCAPE_PREDEF): - sz++; - break; + /* FALLTHROUGH */ case (ESCAPE_SPECIAL): sz++; break; |