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

Diff for /mandoc/tag.c between version 1.8 and 1.9

version 1.8, 2015/10/06 18:32:20 version 1.9, 2015/10/11 22:00:52
Line 125  tag_put(const char *s, int prio, size_t line)
Line 125  tag_put(const char *s, int prio, size_t line)
         size_t                   len;          size_t                   len;
         unsigned int             slot;          unsigned int             slot;
   
         if (tag_files.tfd <= 0)          if (tag_files.tfd <= 0 || strchr(s, ' ') != NULL)
                 return;                  return;
         slot = ohash_qlookup(&tag_data, s);          slot = ohash_qlookup(&tag_data, s);
         entry = ohash_find(&tag_data, slot);          entry = ohash_find(&tag_data, slot);

Legend:
Removed from v.1.8  
changed lines
  Added in v.1.9

CVSweb