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

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

version 1.48, 2015/02/19 10:53:21 version 1.49, 2015/02/19 10:59:35
Line 1105  again:
Line 1105  again:
                         putchar('\n');                          putchar('\n');
                         if (start < end && '\n' == buf[start])                          if (start < end && '\n' == buf[start])
                                 start++;                                  start++;
   
                           /* Remember #define for Dv or Fn. */
   
                           if (strncmp(buf + i + 1, "define", 6) ||
                               ! isspace((unsigned char)buf[i + 7]))
                                   goto again;
   
                           ifo = i + 7;
                           while (ifo < start &&
                               isspace((unsigned char)buf[ifo]))
                                   ifo++;
                           ifa = ifo;
                           while ('_' == buf[ifa] ||
                               isalnum((unsigned char)buf[ifa]))
                                   ifa++;
                           dict_put(buf + ifo, ifa - ifo,
                               '(' == buf[ifa] ? MDOC_Fo : MDOC_Dv);
   
                         goto again;                          goto again;
                 }                  }
   
Line 1333  ordinary(struct state *st, const char *buf, size_t sta
Line 1351  ordinary(struct state *st, const char *buf, size_t sta
         size_t          i, j, opstack, wend;          size_t          i, j, opstack, wend;
         enum mdoc_type  mtype;          enum mdoc_type  mtype;
         int             eos, noeos, seq;          int             eos, noeos, seq;
           char            savechar;
   
         if ( ! st->parsing || st->paused)          if ( ! st->parsing || st->paused)
                 return;                  return;
Line 1437  ordinary(struct state *st, const char *buf, size_t sta
Line 1456  ordinary(struct state *st, const char *buf, size_t sta
                          */                           */
   
                         mtype = MDOC_Fa;                          mtype = MDOC_Fa;
                           savechar = '\0';
                         if (wend && ')' == st->outbuf[wend] &&                          if (wend && ')' == st->outbuf[wend] &&
                             '(' == st->outbuf[wend - 1]) {                              '(' == st->outbuf[wend - 1]) {
                                 mtype = dict_get(st->outbuf, --wend);                                  mtype = dict_get(st->outbuf, --wend);
                                   if (MDOC_Dv == mtype)
                                           mtype = MDOC_Fo;
                                 if (MDOC_Fo == mtype || MDOC_MAX == mtype) {                                  if (MDOC_Fo == mtype || MDOC_MAX == mtype) {
                                         st->outbuflen = wend;                                          st->outbuflen = wend;
                                         st->outbuf[wend] = '\0';                                          st->outbuf[wend] = '\0';
Line 1450  ordinary(struct state *st, const char *buf, size_t sta
Line 1472  ordinary(struct state *st, const char *buf, size_t sta
                                                 fputs(".Xr ", stdout);                                                  fputs(".Xr ", stdout);
                                         st->oust = OUST_MAC;                                          st->oust = OUST_MAC;
                                 }                                  }
                           } else {
                                   mtype = dict_get(st->outbuf, wend);
                                   if (MDOC_Dv == mtype) {
                                           savechar = st->outbuf[wend];
                                           st->outbuf[wend] = '\0';
                                           mdoc_newln(st);
                                           fputs(".Dv ", stdout);
                                           st->oust = OUST_MAC;
                                   } else
                                           mtype = MDOC_Fa;
                         }                          }
   
                         /*                          /*
Line 1468  ordinary(struct state *st, const char *buf, size_t sta
Line 1500  ordinary(struct state *st, const char *buf, size_t sta
                             islower((unsigned char)st->outbuf[wend - 1]))) {                              islower((unsigned char)st->outbuf[wend - 1]))) {
                                 if (MDOC_MAX == mtype)                                  if (MDOC_MAX == mtype)
                                         fputs(" 3", stdout);                                          fputs(" 3", stdout);
                                 if (MDOC_Fa != mtype)                                  if (MDOC_Fa != mtype) {
                                         for (wend += 2;                                          if (MDOC_Dv == mtype)
                                              '\0' != st->outbuf[wend];                                                  st->outbuf[wend] = savechar;
                                              wend++)                                          else
                                                   wend += 2;
                                           while ('\0' != st->outbuf[wend])
                                                 printf(" %c",                                                  printf(" %c",
                                                     st->outbuf[wend]);                                                      st->outbuf[wend++]);
                                   }
                                 mdoc_newln(st);                                  mdoc_newln(st);
                         }                          }
   

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

CVSweb