]> git.cameronkatri.com Git - mandoc.git/blobdiff - man_macro.c
Pull `ig' out of -man and leave it the roff preparser.
[mandoc.git] / man_macro.c
index 37534e091ffda2b02c1e3e42757c02cb1f481fe7..012d4163b536feeb14bbda882736fad4d1282250 100644 (file)
@@ -1,4 +1,4 @@
-/*     $Id: man_macro.c,v 1.42 2010/03/29 10:10:35 kristaps Exp $ */
+/*     $Id: man_macro.c,v 1.43 2010/05/15 20:51:40 kristaps Exp $ */
 /*
  * Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se>
  *
@@ -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;
                }