]> git.cameronkatri.com Git - mandoc.git/blobdiff - term_ascii.c
When in a <PRE>, don't print out the <BR> before lines that have leading
[mandoc.git] / term_ascii.c
index a747f2161a642efdd0b5e5dbc96d41c5692d7b23..374a2a02e0ca0ab16b70c150419db337b9ddd97a 100644 (file)
@@ -1,6 +1,6 @@
-/*     $Id: term_ascii.c,v 1.8 2010/06/30 12:30:36 kristaps Exp $ */
+/*     $Id: term_ascii.c,v 1.12 2011/01/25 17:32:04 kristaps Exp $ */
 /*
- * Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@bsd.lv>
+ * Copyright (c) 2010 Kristaps Dzonsons <kristaps@bsd.lv>
  *
  * Permission to use, copy, modify, and distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
@@ -26,6 +26,7 @@
 #include <stdlib.h>
 #include <unistd.h>
 
+#include "mandoc.h"
 #include "out.h"
 #include "term.h"
 #include "main.h"
@@ -47,8 +48,7 @@ ascii_alloc(char *outopts)
        const char      *toks[2];
        char            *v;
 
-       if (NULL == (p = term_alloc(TERMENC_ASCII)))
-               return(NULL);
+       p = term_alloc(TERMENC_ASCII);
 
        p->tabwidth = 5;
        p->defrmargin = 78;
@@ -104,6 +104,7 @@ static void
 ascii_letter(struct termp *p, char c)
 {
        
+       /* LINTED */
        putchar(c);
 }