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

Diff for /mandoc/roff.c between version 1.397 and 1.399

version 1.397, 2023/10/21 17:10:18 version 1.399, 2023/10/23 20:25:02
Line 1 
Line 1 
 /* $Id$ */  /* $Id$ */
 /*  /*
  * Copyright (c) 2010-2015, 2017-2022 Ingo Schwarze <schwarze@openbsd.org>   * Copyright (c) 2010-2015, 2017-2023 Ingo Schwarze <schwarze@openbsd.org>
  * Copyright (c) 2008-2012, 2014 Kristaps Dzonsons <kristaps@bsd.lv>   * Copyright (c) 2008-2012, 2014 Kristaps Dzonsons <kristaps@bsd.lv>
  *   *
  * Permission to use, copy, modify, and distribute this software for any   * Permission to use, copy, modify, and distribute this software for any
Line 1362  roff_expand(struct roff *r, struct buf *buf, int ln, i
Line 1362  roff_expand(struct roff *r, struct buf *buf, int ln, i
         const char      *res;           /* the string to be pasted */          const char      *res;           /* the string to be pasted */
         const char      *src;           /* source for copying */          const char      *src;           /* source for copying */
         char            *dst;           /* destination for copying */          char            *dst;           /* destination for copying */
           enum mandoc_esc  subtype;       /* return value from roff_escape */
         int              iesc;          /* index of leading escape char */          int              iesc;          /* index of leading escape char */
         int              inam;          /* index of the escape name */          int              inam;          /* index of the escape name */
         int              iarg;          /* index beginning the argument */          int              iarg;          /* index beginning the argument */
Line 1551  roff_expand(struct roff *r, struct buf *buf, int ln, i
Line 1552  roff_expand(struct roff *r, struct buf *buf, int ln, i
                         res = ubuf;                          res = ubuf;
                         break;                          break;
                 case 'w':                  case 'w':
                         (void)snprintf(ubuf, sizeof(ubuf),                          rsz = 0;
                             "%d", (iendarg - iarg) * 24);                          subtype = ESCAPE_UNDEF;
                           while (iarg < iendarg) {
                                   asz = subtype == ESCAPE_SKIPCHAR ? 0 : 1;
                                   if (buf->buf[iarg] != '\\') {
                                           rsz += asz;
                                           iarg++;
                                           continue;
                                   }
                                   switch ((subtype = roff_escape(buf->buf, 0,
                                       iarg, NULL, NULL, NULL, NULL, &iarg))) {
                                   case ESCAPE_SPECIAL:
                                   case ESCAPE_NUMBERED:
                                   case ESCAPE_UNICODE:
                                   case ESCAPE_OVERSTRIKE:
                                   case ESCAPE_UNDEF:
                                           break;
                                   case ESCAPE_DEVICE:
                                           asz *= 8;
                                           break;
                                   case ESCAPE_EXPAND:
                                           abort();
                                   default:
                                           continue;
                                   }
                                   rsz += asz;
                           }
                           (void)snprintf(ubuf, sizeof(ubuf), "%d", rsz * 24);
                         res = ubuf;                          res = ubuf;
                         break;                          break;
                 default:                  default:
Line 1689  roff_getarg(struct roff *r, char **cpp, int ln, int *p
Line 1716  roff_getarg(struct roff *r, char **cpp, int ln, int *p
         buf.buf = start;          buf.buf = start;
         buf.sz = strlen(start) + 1;          buf.sz = strlen(start) + 1;
         buf.next = NULL;          buf.next = NULL;
         if (roff_expand(r, &buf, ln, 0, '\\') & ROFF_IGN) {          if (roff_expand(r, &buf, ln, 0, '\\') == ROFF_IGN) {
                 free(buf.buf);                  free(buf.buf);
                 buf.buf = mandoc_strdup("");                  buf.buf = mandoc_strdup("");
         }          }

Legend:
Removed from v.1.397  
changed lines
  Added in v.1.399

CVSweb