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

Diff for /mandoc/man.c between version 1.129 and 1.130

version 1.129, 2014/04/20 16:46:04 version 1.130, 2014/05/07 14:14:17
Line 595  man_pmacro(struct man *man, int ln, char *buf, int off
Line 595  man_pmacro(struct man *man, int ln, char *buf, int off
   
         /* In quick mode (for mandocdb), abort after the NAME section. */          /* In quick mode (for mandocdb), abort after the NAME section. */
   
         if (man->quick && MAN_SH == tok &&          if (man->quick && MAN_SH == tok) {
             strcmp(man->last->prev->child->string, "NAME"))                  n = man->last;
                 return(2);                  if (MAN_BODY == n->type &&
                       strcmp(n->prev->child->string, "NAME"))
                           return(2);
           }
   
         /*          /*
          * We weren't in a block-line scope when entering the           * We weren't in a block-line scope when entering the

Legend:
Removed from v.1.129  
changed lines
  Added in v.1.130

CVSweb