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

Diff for /mandoc/term.c between version 1.286 and 1.290

version 1.286, 2022/04/27 13:41:13 version 1.290, 2022/08/16 17:45:55
Line 157  term_flushln(struct termp *p)
Line 157  term_flushln(struct termp *p)
                 /* Finally, print the field content. */                  /* Finally, print the field content. */
   
                 term_field(p, vbl, nbr);                  term_field(p, vbl, nbr);
                   if (vbr < vtarget)
                           p->tcol->taboff += vbr;
                   else
                           p->tcol->taboff += vtarget;
                   p->tcol->taboff += (*p->width)(p, ' ');
   
                 /*                  /*
                  * If there is no text left in the field, exit the loop.                   * If there is no text left in the field, exit the loop.
Line 176  term_flushln(struct termp *p)
Line 181  term_flushln(struct termp *p)
                                         vbr += (*p->width)(p, ' ');                                          vbr += (*p->width)(p, ' ');
                                 continue;                                  continue;
                         case '\n':                          case '\n':
                           case ASCII_NBRZW:
                         case ASCII_BREAK:                          case ASCII_BREAK:
                           case ASCII_TABREF:
                                 continue;                                  continue;
                         default:                          default:
                                 break;                                  break;
Line 207  term_flushln(struct termp *p)
Line 214  term_flushln(struct termp *p)
                         return;                          return;
   
                 endline(p);                  endline(p);
                 p->viscol = 0;  
   
                 /*                  /*
                  * Normally, start the next line at the same indentation                   * Normally, start the next line at the same indentation
Line 258  term_fill(struct termp *p, size_t *nbr, size_t *vbr, s
Line 264  term_fill(struct termp *p, size_t *nbr, size_t *vbr, s
         size_t   vn;        /* Visual position of the next character. */          size_t   vn;        /* Visual position of the next character. */
         int      breakline; /* Break at the end of this word. */          int      breakline; /* Break at the end of this word. */
         int      graph;     /* Last character was non-blank. */          int      graph;     /* Last character was non-blank. */
           int      taboff;    /* Temporary offset for literal tabs. */
   
         *nbr = *vbr = vis = 0;          *nbr = *vbr = vis = 0;
         breakline = graph = 0;          breakline = graph = 0;
           taboff = p->tcol->taboff;
         for (ic = p->tcol->col; ic < p->tcol->lastcol; ic++) {          for (ic = p->tcol->col; ic < p->tcol->lastcol; ic++) {
                 switch (p->tcol->buf[ic]) {                  switch (p->tcol->buf[ic]) {
                 case '\b':  /* Escape \o (overstrike) or backspace markup. */                  case '\b':  /* Escape \o (overstrike) or backspace markup. */
Line 268  term_fill(struct termp *p, size_t *nbr, size_t *vbr, s
Line 276  term_fill(struct termp *p, size_t *nbr, size_t *vbr, s
                         vis -= (*p->width)(p, p->tcol->buf[ic - 1]);                          vis -= (*p->width)(p, p->tcol->buf[ic - 1]);
                         continue;                          continue;
   
                 case '\t':  /* Normal ASCII whitespace. */  
                 case ' ':                  case ' ':
                 case ASCII_BREAK:  /* Escape \: (breakpoint). */                  case ASCII_BREAK:  /* Escape \: (breakpoint). */
                         switch (p->tcol->buf[ic]) {                          vn = vis;
                         case '\t':                          if (p->tcol->buf[ic] == ' ')
                                 vn = term_tab_next(vis);                                  vn += (*p->width)(p, ' ');
                                 break;  
                         case ' ':  
                                 vn = vis + (*p->width)(p, ' ');  
                                 break;  
                         case ASCII_BREAK:  
                                 vn = vis;  
                                 break;  
                         default:  
                                 abort();  
                         }  
                         /* Can break at the end of a word. */                          /* Can break at the end of a word. */
                         if (breakline || vn > vtarget)                          if (breakline || vn > vtarget)
                                 break;                                  break;
Line 317  term_fill(struct termp *p, size_t *nbr, size_t *vbr, s
Line 314  term_fill(struct termp *p, size_t *nbr, size_t *vbr, s
                         *vbr = vis;                          *vbr = vis;
                         continue;                          continue;
   
                 case ASCII_NBRSP:  /* Non-breakable space. */                  case ASCII_TABREF:
                         p->tcol->buf[ic] = ' ';                          taboff = -vis - (*p->width)(p, ' ');
                         /* FALLTHROUGH */                          continue;
                 default:  /* Printable character. */  
                   default:
                           switch (p->tcol->buf[ic]) {
                           case '\t':
                                   if (taboff < 0 && (size_t)-taboff > vis)
                                           vis = 0;
                                   else
                                           vis += taboff;
                                   vis = term_tab_next(vis);
                                   vis -= taboff;
                                   break;
                           case ASCII_NBRZW:  /* Non-breakable zero-width. */
                                   break;
                           case ASCII_NBRSP:  /* Non-breakable space. */
                                   p->tcol->buf[ic] = ' ';
                                   /* FALLTHROUGH */
                           default:  /* Printable character. */
                                   vis += (*p->width)(p, p->tcol->buf[ic]);
                                   break;
                           }
                         graph = 1;                          graph = 1;
                         vis += (*p->width)(p, p->tcol->buf[ic]);  
                         if (vis > vtarget && *nbr > 0)                          if (vis > vtarget && *nbr > 0)
                                 return;                                  return;
                         continue;                          continue;
Line 352  term_field(struct termp *p, size_t vbl, size_t nbr)
Line 367  term_field(struct termp *p, size_t vbl, size_t nbr)
 {  {
         size_t   ic;    /* Character position in the input buffer. */          size_t   ic;    /* Character position in the input buffer. */
         size_t   vis;   /* Visual position of the current character. */          size_t   vis;   /* Visual position of the current character. */
           size_t   vt;    /* Visual position including tab offset. */
         size_t   dv;    /* Visual width of the current character. */          size_t   dv;    /* Visual width of the current character. */
         size_t   vn;    /* Visual position of the next character. */          int      taboff; /* Temporary offset for literal tabs. */
   
         vis = 0;          vis = 0;
           taboff = p->tcol->taboff;
         for (ic = p->tcol->col; ic < nbr; ic++) {          for (ic = p->tcol->col; ic < nbr; ic++) {
   
                 /*                  /*
Line 366  term_field(struct termp *p, size_t vbl, size_t nbr)
Line 383  term_field(struct termp *p, size_t vbl, size_t nbr)
                 switch (p->tcol->buf[ic]) {                  switch (p->tcol->buf[ic]) {
                 case '\n':                  case '\n':
                 case ASCII_BREAK:                  case ASCII_BREAK:
                   case ASCII_NBRZW:
                         continue;                          continue;
                 case '\t':                  case ASCII_TABREF:
                         vn = term_tab_next(vis);                          taboff = -vis - (*p->width)(p, ' ');
                         vbl += vn - vis;  
                         vis = vn;  
                         continue;                          continue;
                   case '\t':
                 case ' ':                  case ' ':
                 case ASCII_NBRSP:                  case ASCII_NBRSP:
                         dv = (*p->width)(p, ' ');                          if (p->tcol->buf[ic] == '\t') {
                                   if (taboff < 0 && (size_t)-taboff > vis)
                                           vt = 0;
                                   else
                                           vt = vis + taboff;
                                   dv = term_tab_next(vt) - vt;
                           } else
                                   dv = (*p->width)(p, ' ');
                         vbl += dv;                          vbl += dv;
                         vis += dv;                          vis += dv;
                         continue;                          continue;
Line 436  endline(struct termp *p)
Line 460  endline(struct termp *p)
 void  void
 term_newln(struct termp *p)  term_newln(struct termp *p)
 {  {
   
         p->flags |= TERMP_NOSPACE;          p->flags |= TERMP_NOSPACE;
         if (p->tcol->lastcol || p->viscol)          if (p->tcol->lastcol || p->viscol)
                 term_flushln(p);                  term_flushln(p);
           p->tcol->taboff = 0;
 }  }
   
 /*  /*
Line 572  term_word(struct termp *p, const char *word)
Line 596  term_word(struct termp *p, const char *word)
                         break;                          break;
                 case ESCAPE_NUMBERED:                  case ESCAPE_NUMBERED:
                         uc = mchars_num2char(seq, sz);                          uc = mchars_num2char(seq, sz);
                         if (uc < 0)                          if (uc >= 0)
                                 continue;                                  break;
                         break;                          bufferc(p, ASCII_NBRZW);
                           continue;
                 case ESCAPE_SPECIAL:                  case ESCAPE_SPECIAL:
                         if (p->enc == TERMENC_ASCII) {                          if (p->enc == TERMENC_ASCII) {
                                 cp = mchars_spec2str(seq, sz, &ssz);                                  cp = mchars_spec2str(seq, sz, &ssz);
                                 if (cp != NULL)                                  if (cp != NULL)
                                         encode(p, cp, ssz);                                          encode(p, cp, ssz);
                                   else
                                           bufferc(p, ASCII_NBRZW);
                         } else {                          } else {
                                 uc = mchars_spec2cp(seq, sz);                                  uc = mchars_spec2cp(seq, sz);
                                 if (uc > 0)                                  if (uc > 0)
                                         encode1(p, uc);                                          encode1(p, uc);
                                   else
                                           bufferc(p, ASCII_NBRZW);
                         }                          }
                         continue;                          continue;
                 case ESCAPE_UNDEF:                  case ESCAPE_UNDEF:
Line 745  term_word(struct termp *p, const char *word)
Line 774  term_word(struct termp *p, const char *word)
                         if (p->col > p->tcol->lastcol)                          if (p->col > p->tcol->lastcol)
                                 p->col = p->tcol->lastcol;                                  p->col = p->tcol->lastcol;
                         continue;                          continue;
                   case ESCAPE_IGNORE:
                           bufferc(p, ASCII_NBRZW);
                           continue;
                 default:                  default:
                         continue;                          continue;
                 }                  }
Line 792  bufferc(struct termp *p, char c)
Line 824  bufferc(struct termp *p, char c)
                 p->tcol->lastcol = p->col;                  p->tcol->lastcol = p->col;
 }  }
   
   void
   term_tab_ref(struct termp *p)
   {
           if (p->tcol->lastcol && p->tcol->lastcol <= p->col &&
               (p->flags & TERMP_NOBUF) == 0)
                   bufferc(p, ASCII_TABREF);
   }
   
 /*  /*
  * See encode().   * See encode().
  * Do this for a single (probably unicode) value.   * Do this for a single (probably unicode) value.
Line 936  term_strlen(const struct termp *p, const char *cp)
Line 976  term_strlen(const struct termp *p, const char *cp)
         int              ssz, skip, uc;          int              ssz, skip, uc;
         const char      *seq, *rhs;          const char      *seq, *rhs;
         enum mandoc_esc  esc;          enum mandoc_esc  esc;
         static const char rej[] = { '\\', ASCII_NBRSP, ASCII_HYPH,          static const char rej[] = { '\\', ASCII_NBRSP, ASCII_NBRZW,
                         ASCII_BREAK, '\0' };                  ASCII_BREAK, ASCII_HYPH, ASCII_TABREF, '\0' };
   
         /*          /*
          * Account for escaped sequences within string length           * Account for escaped sequences within string length

Legend:
Removed from v.1.286  
changed lines
  Added in v.1.290

CVSweb