diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2010-12-08 10:58:22 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2010-12-08 10:58:22 +0000 |
commit | 6caa80c1c85a575d90e6723b17b2adde9689ea71 (patch) | |
tree | 6d0e7925c87df945d37020801d33144390038ef3 /man_macro.c | |
parent | 852674007b57dc92939539877a1e7ba2f05cd26d (diff) | |
download | mandoc-6caa80c1c85a575d90e6723b17b2adde9689ea71.tar.gz |
Remove `i' and `r' macro handlers. These macros, originally part of the
me package, aren't recognised by "groff -mandoc" so we don't need to do
so either. Discussed on tech@ with schwarze@.
While at it, remove references to `b' in man.7. As far as I know, this
was never supported anyway.
Diffstat (limited to 'man_macro.c')
-rw-r--r-- | man_macro.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/man_macro.c b/man_macro.c index 63ba5b84..5a5d2366 100644 --- a/man_macro.c +++ b/man_macro.c @@ -69,11 +69,9 @@ const struct man_macro __man_macros[MAN_MAX] = { { in_line_eoln, 0 }, /* IR */ { in_line_eoln, 0 }, /* RI */ { in_line_eoln, MAN_NSCOPED }, /* na */ - { in_line_eoln, 0 }, /* i */ { in_line_eoln, MAN_NSCOPED }, /* sp */ { in_line_eoln, 0 }, /* nf */ { in_line_eoln, 0 }, /* fi */ - { in_line_eoln, 0 }, /* r */ { blk_close, 0 }, /* RE */ { blk_exp, MAN_EXPLICIT }, /* RS */ { in_line_eoln, 0 }, /* DT */ |