]> git.cameronkatri.com Git - mandoc.git/blobdiff - term.c
Fixed -offset left (schwarze@openbsd.org).
[mandoc.git] / term.c
diff --git a/term.c b/term.c
index d99c990dd6c72514603ba53c82c9e81b9ef22358..ef221086d6985d069d0724428d183bfd65d3768a 100644 (file)
--- a/term.c
+++ b/term.c
@@ -1,4 +1,4 @@
-/*     $Id: term.c,v 1.81 2009/06/22 12:04:05 kristaps Exp $ */
+/*     $Id: term.c,v 1.83 2009/06/22 13:13:10 kristaps Exp $ */
 /*
  * Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se>
  *
@@ -200,6 +200,9 @@ term_isopendelim(const char *p, int len)
  *  Otherwise, the line will break at the right margin.  Extremely long
  *  lines will cause the system to emit a warning (TODO: hyphenate, if
  *  possible).
+ *
+ *  FIXME: newline breaks occur (in groff) also occur when a single
+ *  space follows a NOBREAK!
  */
 void
 term_flushln(struct termp *p)
@@ -410,7 +413,8 @@ term_nescape(struct termp *p, const char *word, size_t len)
        size_t           sz;
        int              i;
 
-       if ((rhs = term_a2ascii(p->symtab, word, len, &sz))) 
+       rhs = term_a2ascii(p->symtab, word, len, &sz);
+       if (rhs)
                for (i = 0; i < (int)sz; i++) 
                        term_encodea(p, rhs[i]);
 }