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

Diff for /mandoc/term_ps.c between version 1.66 and 1.67

version 1.66, 2014/08/28 01:37:12 version 1.67, 2014/10/27 20:41:58
Line 59  struct termp_ps {
Line 59  struct termp_ps {
 #define PS_INLINE        (1 << 0)       /* we're in a word */  #define PS_INLINE        (1 << 0)       /* we're in a word */
 #define PS_MARGINS       (1 << 1)       /* we're in the margins */  #define PS_MARGINS       (1 << 1)       /* we're in the margins */
 #define PS_NEWPAGE       (1 << 2)       /* new page, no words yet */  #define PS_NEWPAGE       (1 << 2)       /* new page, no words yet */
   #define PS_BACKSP        (1 << 3)       /* last character was backspace */
         size_t            pscol;        /* visible column (AFM units) */          size_t            pscol;        /* visible column (AFM units) */
         size_t            psrow;        /* visible row (AFM units) */          size_t            psrow;        /* visible row (AFM units) */
         char             *psmarg;       /* margin buf */          char             *psmarg;       /* margin buf */
         size_t            psmargsz;     /* margin buf size */          size_t            psmargsz;     /* margin buf size */
         size_t            psmargcur;    /* cur index in margin buf */          size_t            psmargcur;    /* cur index in margin buf */
         char              last;         /* character buffer */          char              last;         /* last non-backspace seen */
         enum termfont     lastf;        /* last set font */          enum termfont     lastf;        /* last set font */
         enum termfont     nextf;        /* building next font here */          enum termfont     nextf;        /* building next font here */
         size_t            scale;        /* font scaling factor */          size_t            scale;        /* font scaling factor */
Line 1047  ps_fclose(struct termp *p)
Line 1048  ps_fclose(struct termp *p)
          */           */
   
         if (p->ps->last != '\0') {          if (p->ps->last != '\0') {
                 assert(p->ps->last != 8);                  assert( ! (p->ps->flags & PS_BACKSP));
                 if (p->ps->nextf != p->ps->lastf) {                  if (p->ps->nextf != p->ps->lastf) {
                         ps_pclose(p);                          ps_pclose(p);
                         ps_setfont(p, p->ps->nextf);                          ps_setfont(p, p->ps->nextf);
Line 1066  ps_fclose(struct termp *p)
Line 1067  ps_fclose(struct termp *p)
 static void  static void
 ps_letter(struct termp *p, int arg)  ps_letter(struct termp *p, int arg)
 {  {
           size_t          savecol;
         char            c;          char            c;
   
         c = arg >= 128 || arg <= 0 ? '?' : arg;          c = arg >= 128 || arg <= 0 ? '?' : arg;
   
         /*          /*
          * When receiving an initial character, merely buffer it,           * When receiving a backspace, merely flag it.
          * because a backspace might follow to specify formatting.           * We don't know yet whether it is
          * When receiving a backspace, use the buffered character           * a font instruction or an overstrike.
          * to build the font instruction and clear the buffer.  
          * Only when there are two non-backspace characters in a row,  
          * activate the font built so far and print the first of them;  
          * the second, again, merely gets buffered.  
          * The final character will get printed from ps_fclose().  
          */           */
   
         if (c == 8) {          if (c == '\b') {
                 assert(p->ps->last != '\0');                  assert(p->ps->last != '\0');
                 assert(p->ps->last != 8);                  assert( ! (p->ps->flags & PS_BACKSP));
                 if ('_' == p->ps->last) {                  p->ps->flags |= PS_BACKSP;
                   return;
           }
   
           /*
            * Decode font instructions.
            */
   
           if (p->ps->flags & PS_BACKSP) {
                   if (p->ps->last == '_') {
                         switch (p->ps->nextf) {                          switch (p->ps->nextf) {
                         case TERMFONT_BI:                          case TERMFONT_BI:
                                 break;                                  break;
Line 1094  ps_letter(struct termp *p, int arg)
Line 1100  ps_letter(struct termp *p, int arg)
                         default:                          default:
                                 p->ps->nextf = TERMFONT_UNDER;                                  p->ps->nextf = TERMFONT_UNDER;
                         }                          }
                 } else {                          p->ps->last = c;
                           p->ps->flags &= ~PS_BACKSP;
                           return;
                   }
                   if (p->ps->last == c) {
                         switch (p->ps->nextf) {                          switch (p->ps->nextf) {
                         case TERMFONT_BI:                          case TERMFONT_BI:
                                 break;                                  break;
Line 1104  ps_letter(struct termp *p, int arg)
Line 1114  ps_letter(struct termp *p, int arg)
                         default:                          default:
                                 p->ps->nextf = TERMFONT_BOLD;                                  p->ps->nextf = TERMFONT_BOLD;
                         }                          }
                           p->ps->flags &= ~PS_BACKSP;
                           return;
                 }                  }
         } else if (p->ps->last != '\0' && p->ps->last != 8) {  
                   /*
                    * This is not a font instruction, but rather
                    * the next character.  Prepare for overstrike.
                    */
   
                   savecol = p->ps->pscol;
           } else
                   savecol = SIZE_MAX;
   
           /*
            * We found the next character, so the font instructions
            * for the previous one are complete.
            * Use them and print it.
            */
   
           if (p->ps->last != '\0') {
                 if (p->ps->nextf != p->ps->lastf) {                  if (p->ps->nextf != p->ps->lastf) {
                         ps_pclose(p);                          ps_pclose(p);
                         ps_setfont(p, p->ps->nextf);                          ps_setfont(p, p->ps->nextf);
Line 1113  ps_letter(struct termp *p, int arg)
Line 1141  ps_letter(struct termp *p, int arg)
                 p->ps->nextf = TERMFONT_NONE;                  p->ps->nextf = TERMFONT_NONE;
                 ps_pletter(p, p->ps->last);                  ps_pletter(p, p->ps->last);
         }          }
   
           /*
            * Do not print the current character yet because font
            * instructions might follow; only remember it.
            * For the first character, nothing else is done.
            * The final character will get printed from ps_fclose().
            */
   
         p->ps->last = c;          p->ps->last = c;
   
           /*
            * For an overstrike, back up to the previous position.
            */
   
           if (savecol != SIZE_MAX) {
                   ps_pclose(p);
                   p->ps->pscol = savecol;
                   p->ps->flags &= ~PS_BACKSP;
           }
 }  }
   
 static void  static void

Legend:
Removed from v.1.66  
changed lines
  Added in v.1.67

CVSweb