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

Diff for /mandoc/tag.c between version 1.23 and 1.24

version 1.23, 2019/07/19 20:27:25 version 1.24, 2019/07/22 03:21:50
Line 151  tag_put(const char *s, int prio, size_t line)
Line 151  tag_put(const char *s, int prio, size_t line)
                 s += 2;                  s += 2;
   
         /*          /*
          * Skip whitespace and whatever follows it,           * Skip whitespace and escapes and whatever follows,
          * and if there is any, downgrade the priority.           * and if there is any, downgrade the priority.
          */           */
   
         len = strcspn(s, " \t");          len = strcspn(s, " \t\\");
         if (len == 0)          if (len == 0)
                 return;                  return;
   

Legend:
Removed from v.1.23  
changed lines
  Added in v.1.24

CVSweb