[BACK]Return to term_ascii.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / mandoc

Diff for /src/usr.bin/mandoc/term_ascii.c between version 1.1 and 1.2

version 1.1, 2010/06/10 22:50:10 version 1.2, 2010/06/26 19:08:00
Line 35 
Line 35 
 static  void              ascii_begin(struct termp *);  static  void              ascii_begin(struct termp *);
 static  void              ascii_advance(struct termp *, size_t);  static  void              ascii_advance(struct termp *, size_t);
 static  void              ascii_end(struct termp *);  static  void              ascii_end(struct termp *);
   static  size_t            ascii_width(const struct termp *, char);
   
   
 void *  void *
Line 47 
Line 48 
         if (NULL == (p = term_alloc(TERMENC_ASCII)))          if (NULL == (p = term_alloc(TERMENC_ASCII)))
                 return(NULL);                  return(NULL);
   
           p->tabwidth = 5;
           p->defrmargin = 78;
   
         p->type = TERMTYPE_CHAR;          p->type = TERMTYPE_CHAR;
         p->letter = ascii_letter;          p->letter = ascii_letter;
         p->begin = ascii_begin;          p->begin = ascii_begin;
         p->end = ascii_end;          p->end = ascii_end;
         p->endline = ascii_endline;          p->endline = ascii_endline;
         p->advance = ascii_advance;          p->advance = ascii_advance;
           p->width = ascii_width;
   
         toks[0] = "width";          toks[0] = "width";
         toks[1] = NULL;          toks[1] = NULL;
Line 71 
Line 76 
                 p->defrmargin = 58;                  p->defrmargin = 58;
   
         return(p);          return(p);
   }
   
   
   static size_t
   ascii_width(const struct termp *p, char c)
   {
   
           return(1);
 }  }
   
   

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.2