summaryrefslogtreecommitdiffstats
path: root/chars.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2009-11-01 07:44:32 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2009-11-01 07:44:32 +0000
commit13099e0c4c23befef2f762613590494d89487710 (patch)
tree46b4add7254090a4cd443e759eafda356f0791b5 /chars.c
parent153136295f3a2d0540e70dbd96a1af7ca783b7be (diff)
downloadmandoc-13099e0c4c23befef2f762613590494d89487710.tar.gz
Replaced putchar() loop with fwrite() (noted by Joerg Sonnenberger).
Diffstat (limited to 'chars.c')
-rw-r--r--chars.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/chars.c b/chars.c
index 23b98006..a7582d78 100644
--- a/chars.c
+++ b/chars.c
@@ -35,7 +35,7 @@ struct ln {
int type;
#define CHARS_CHAR (1 << 0)
#define CHARS_STRING (1 << 1)
-#define CHARS_BOTH (0x03)
+#define CHARS_BOTH (CHARS_CHAR | CHARS_STRING)
};
#define LINES_MAX 351