diff options
author | Ingo Schwarze <schwarze@openbsd.org> | 2010-05-16 01:35:37 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@openbsd.org> | 2010-05-16 01:35:37 +0000 |
commit | 110ec8e74f50c3c583a7b5930b26eede65e6f8e7 (patch) | |
tree | 4788d50077cc4281f5c5c98b0e841a45c6913545 /term.c | |
parent | 95167efd6516f34385b6878dd2f043182e743e05 (diff) | |
download | mandoc-110ec8e74f50c3c583a7b5930b26eede65e6f8e7.tar.gz |
sync to OpenBSD:
introduce a #define to get rid of the magic number
describing the ASCII character used to represent non-breaking space;
ok kristaps
Diffstat (limited to 'term.c')
-rw-r--r-- | term.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -233,7 +233,7 @@ term_flushln(struct termp *p) for ( ; i < (int)p->col; i++) if (' ' == p->buf[i]) break; - else if (31 == p->buf[i]) + else if (ASCII_NBRSP == p->buf[i]) putchar(' '); else putchar(p->buf[i]); |