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

Diff for /pod2mdoc/pod2mdoc.c between version 1.49 and 1.50

version 1.49, 2015/02/19 10:59:35 version 1.50, 2015/02/19 11:05:24
Line 1200  again:
Line 1200  again:
                                 if ('\0' != *cp2)                                  if ('\0' != *cp2)
                                         dict_put(cp2, 0, MDOC_Fa);                                          dict_put(cp2, 0, MDOC_Fa);
                                 register_type(buf + ifa);                                  register_type(buf + ifa);
                                 printf(".Fa \"%s\"\n", buf + ifa);                                  if (strchr(buf + ifa, ' ') == NULL)
                                           printf(".Fa %s\n", buf + ifa);
                                   else
                                           printf(".Fa \"%s\"\n", buf + ifa);
                                 if (cp == NULL)                                  if (cp == NULL)
                                         break;                                          break;
                                 while (*cp == ' ' || *cp == '\t')                                  while (*cp == ' ' || *cp == '\t')

Legend:
Removed from v.1.49  
changed lines
  Added in v.1.50

CVSweb