diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2010-05-15 20:51:40 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2010-05-15 20:51:40 +0000 |
commit | 45ec86af0876cfb3fe26e9d6545dd7fe008b81f0 (patch) | |
tree | 2be8f9a2ca8e4913741f6f25bed437d316915fb0 /man_macro.c | |
parent | 3094579682f28cc9511e5e52f5fef2f4ee335f8c (diff) | |
download | mandoc-45ec86af0876cfb3fe26e9d6545dd7fe008b81f0.tar.gz |
Pull `ig' out of -man and leave it the roff preparser.
Diffstat (limited to 'man_macro.c')
-rw-r--r-- | man_macro.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/man_macro.c b/man_macro.c index 550d162f..cc5d7b86 100644 --- a/man_macro.c +++ b/man_macro.c @@ -86,7 +86,6 @@ const struct man_macro __man_macros[MAN_MAX] = { { blk_exp, MAN_EXPLICIT | MAN_NOCLOSE}, /* dei */ { blk_exp, MAN_EXPLICIT | MAN_NOCLOSE}, /* am */ { blk_exp, MAN_EXPLICIT | MAN_NOCLOSE}, /* ami */ - { blk_exp, MAN_EXPLICIT | MAN_NOCLOSE}, /* ig */ { blk_dotted, 0 }, /* . */ }; @@ -297,8 +296,7 @@ blk_dotted(MACRO_PROT_ARGS) for (nn = m->last->parent; nn; nn = nn->parent) if (nn->tok == MAN_de || nn->tok == MAN_dei || nn->tok == MAN_am || - nn->tok == MAN_ami || - nn->tok == MAN_ig) { + nn->tok == MAN_ami) { ntok = nn->tok; break; } |