diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-07-21 15:33:05 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-07-21 15:33:05 +0000 |
commit | c767c89c5ea56f842a1294519fecaa43954d70fb (patch) | |
tree | ec5da7475fe86850695d0a5b82cc57d23cdd9c46 /term.h | |
parent | c5886eb6ed33e7a31f3ac3858576927b583c387a (diff) | |
download | mandoc-c767c89c5ea56f842a1294519fecaa43954d70fb.tar.gz |
Fixed transcription error of define values (bah).
Diffstat (limited to 'term.h')
-rw-r--r-- | term.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -47,7 +47,7 @@ struct termp { #define TERMP_NONOSPACE (1 << 7) /* No space (no autounset). */ #define TERMP_DANGLE (1 << 8) /* See term_flushln(). */ #define TERMP_HANG (1 << 9) /* See term_flushln(). */ -#define TERMP_TWOSPACE (1 << 9) /* See term_flushln(). */ +#define TERMP_TWOSPACE (1 << 10) /* See term_flushln(). */ char *buf; /* Output buffer. */ enum termenc enc; /* Type of encoding. */ void *symtab; /* Encoded-symbol table. */ |