[BACK]Return to man.c CVS log [TXT][DIR] Up to [cvsweb.bsd.lv] / mandoc

Diff for /mandoc/man.c between version 1.11 and 1.12

version 1.11, 2009/03/26 14:38:11 version 1.12, 2009/03/26 14:44:41
Line 343  man_pmacro(struct man *m, int ln, char *buf)
Line 343  man_pmacro(struct man *m, int ln, char *buf)
                 if ( ! man_vwarn(m, ln, ppos,                  if ( ! man_vwarn(m, ln, ppos,
                                 "ill-formed macro: %s", mac))                                  "ill-formed macro: %s", mac))
                         goto err;                          goto err;
                 goto out;                  return(1);
         }          }
   
         if (MAN_MAX == (c = man_hash_find(m->htab, mac))) {          if (MAN_MAX == (c = man_hash_find(m->htab, mac))) {
Line 355  man_pmacro(struct man *m, int ln, char *buf)
Line 355  man_pmacro(struct man *m, int ln, char *buf)
                 if ( ! man_vwarn(m, ln, ppos,                  if ( ! man_vwarn(m, ln, ppos,
                                 "unknown macro: %s", mac))                                  "unknown macro: %s", mac))
                         goto err;                          goto err;
                 goto out;                  return(1);
         }          }
   
         /* The macro is sane.  Jump to the next word. */          /* The macro is sane.  Jump to the next word. */

Legend:
Removed from v.1.11  
changed lines
  Added in v.1.12

CVSweb