diff options
author | Ingo Schwarze <schwarze@openbsd.org> | 2013-10-22 20:38:00 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@openbsd.org> | 2013-10-22 20:38:00 +0000 |
commit | b8a5cbbc3079357d3d38795b9f0332e8f98b76a5 (patch) | |
tree | 5ab9cff77e6627a07811ed022bf0652a3325a0f0 /roff.c | |
parent | 3e6695c0fbfd2d85665ea3a1409a0df04f1aa36b (diff) | |
download | mandoc-b8a5cbbc3079357d3d38795b9f0332e8f98b76a5.tar.gz |
Parse and ignore .hw (hyphenation points in words); this is safe because
we don't do hyphenation anyway, so there is no point in throwing an ERROR
when encountering .hw.
Real-world usage of the request found by naddy@ in sysutils/dwdiff(1).
Diffstat (limited to 'roff.c')
-rw-r--r-- | roff.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -47,6 +47,7 @@ enum rofft { ROFF_ds, ROFF_el, ROFF_fam, + ROFF_hw, ROFF_hy, ROFF_ie, ROFF_if, @@ -237,6 +238,7 @@ static struct roffmac roffs[ROFF_MAX] = { { "ds", roff_ds, NULL, NULL, 0, NULL }, { "el", roff_cond, roff_cond_text, roff_cond_sub, ROFFMAC_STRUCT, NULL }, { "fam", roff_line_ignore, NULL, NULL, 0, NULL }, + { "hw", roff_line_ignore, NULL, NULL, 0, NULL }, { "hy", roff_line_ignore, NULL, NULL, 0, NULL }, { "ie", roff_cond, roff_cond_text, roff_cond_sub, ROFFMAC_STRUCT, NULL }, { "if", roff_cond, roff_cond_text, roff_cond_sub, ROFFMAC_STRUCT, NULL }, |