[BACK]Return to tag.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / mandoc

Diff for /src/usr.bin/mandoc/tag.c between version 1.14 and 1.15

version 1.14, 2016/11/08 15:27:06 version 1.15, 2016/11/08 15:57:12
Line 128 
Line 128 
         size_t                   len;          size_t                   len;
         unsigned int             slot;          unsigned int             slot;
   
         if (tag_files.tfd <= 0 || strchr(s, ' ') != NULL)          /* Sanity checks. */
   
           if (tag_files.tfd <= 0)
                   return;
           if (s[0] == '\\' && (s[1] == '&' || s[1] == 'e'))
                   s += 2;
           if (*s == '\0' || strchr(s, ' ') != NULL)
                 return;                  return;
   
         slot = ohash_qlookup(&tag_data, s);          slot = ohash_qlookup(&tag_data, s);

Legend:
Removed from v.1.14  
changed lines
  Added in v.1.15