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

Diff for /mandoc/roff.c between version 1.227 and 1.228

version 1.227, 2014/09/06 22:39:36 version 1.228, 2014/09/06 23:24:32
Line 759  roff_parseln(struct roff *r, int ln, char **bufp,
Line 759  roff_parseln(struct roff *r, int ln, char **bufp,
                 return(roff_parsetext(bufp, szp, pos, offs));                  return(roff_parsetext(bufp, szp, pos, offs));
         }          }
   
           /* Skip empty request lines. */
   
           if ((*bufp)[pos] == '"') {
                   mandoc_msg(MANDOCERR_COMMENT_BAD, r->parse,
                       ln, pos, NULL);
                   return(ROFF_IGN);
           } else if ((*bufp)[pos] == '\0')
                   return(ROFF_IGN);
   
         /*          /*
          * If a scope is open, go to the child handler for that macro,           * If a scope is open, go to the child handler for that macro,
          * as it may want to preprocess before doing anything with it.           * as it may want to preprocess before doing anything with it.

Legend:
Removed from v.1.227  
changed lines
  Added in v.1.228

CVSweb