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

Diff for /mandoc/term_ascii.c between version 1.9 and 1.12

version 1.9, 2010/07/13 23:53:20 version 1.12, 2011/01/25 17:32:04
Line 26 
Line 26 
 #include <stdlib.h>  #include <stdlib.h>
 #include <unistd.h>  #include <unistd.h>
   
   #include "mandoc.h"
 #include "out.h"  #include "out.h"
 #include "term.h"  #include "term.h"
 #include "main.h"  #include "main.h"
Line 47  ascii_alloc(char *outopts)
Line 48  ascii_alloc(char *outopts)
         const char      *toks[2];          const char      *toks[2];
         char            *v;          char            *v;
   
         if (NULL == (p = term_alloc(TERMENC_ASCII)))          p = term_alloc(TERMENC_ASCII);
                 return(NULL);  
   
         p->tabwidth = 5;          p->tabwidth = 5;
         p->defrmargin = 78;          p->defrmargin = 78;
Line 104  static void
Line 104  static void
 ascii_letter(struct termp *p, char c)  ascii_letter(struct termp *p, char c)
 {  {
   
           /* LINTED */
         putchar(c);          putchar(c);
 }  }
   

Legend:
Removed from v.1.9  
changed lines
  Added in v.1.12

CVSweb