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

Diff for /mandoc/term.c between version 1.255 and 1.258

version 1.255, 2015/10/23 14:50:58 version 1.258, 2016/08/10 11:03:43
Line 1 
Line 1 
 /*      $Id$ */  /*      $Id$ */
 /*  /*
  * Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>   * Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>
  * Copyright (c) 2010-2015 Ingo Schwarze <schwarze@openbsd.org>   * Copyright (c) 2010-2016 Ingo Schwarze <schwarze@openbsd.org>
  *   *
  * Permission to use, copy, modify, and distribute this software for any   * Permission to use, copy, modify, and distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above   * purpose with or without fee is hereby granted, provided that the above
Line 160  term_flushln(struct termp *p)
Line 160  term_flushln(struct termp *p)
                         if (' ' == p->buf[j] || '\t' == p->buf[j])                          if (' ' == p->buf[j] || '\t' == p->buf[j])
                                 break;                                  break;
   
                         /* Back over the the last printed character. */                          /* Back over the last printed character. */
                         if (8 == p->buf[j]) {                          if (8 == p->buf[j]) {
                                 assert(j);                                  assert(j);
                                 vend -= (*p->width)(p, p->buf[j - 1]);                                  vend -= (*p->width)(p, p->buf[j - 1]);
Line 365  term_fontpush(struct termp *p, enum termfont f)
Line 365  term_fontpush(struct termp *p, enum termfont f)
         if (++p->fonti == p->fontsz) {          if (++p->fonti == p->fontsz) {
                 p->fontsz += 8;                  p->fontsz += 8;
                 p->fontq = mandoc_reallocarray(p->fontq,                  p->fontq = mandoc_reallocarray(p->fontq,
                     p->fontsz, sizeof(enum termfont *));                      p->fontsz, sizeof(*p->fontq));
         }          }
         p->fontq[p->fonti] = f;          p->fontq[p->fonti] = f;
 }  }
Line 504  term_word(struct termp *p, const char *word)
Line 504  term_word(struct termp *p, const char *word)
                                 }                                  }
                         }                          }
                         /* Trim trailing backspace/blank pair. */                          /* Trim trailing backspace/blank pair. */
                         if (p->col > 2 && p->buf[p->col - 1] == ' ')                          if (p->col > 2 &&
                               (p->buf[p->col - 1] == ' ' ||
                                p->buf[p->col - 1] == '\t'))
                                 p->col -= 2;                                  p->col -= 2;
                         continue;                          continue;
                 default:                  default:
Line 568  encode1(struct termp *p, int c)
Line 570  encode1(struct termp *p, int c)
             p->fontq[p->fonti] : TERMFONT_NONE;              p->fontq[p->fonti] : TERMFONT_NONE;
   
         if (p->flags & TERMP_BACKBEFORE) {          if (p->flags & TERMP_BACKBEFORE) {
                 if (p->buf[p->col - 1] == ' ')                  if (p->buf[p->col - 1] == ' ' || p->buf[p->col - 1] == '\t')
                         p->col--;                          p->col--;
                 else                  else
                         p->buf[p->col++] = 8;                          p->buf[p->col++] = 8;

Legend:
Removed from v.1.255  
changed lines
  Added in v.1.258

CVSweb