aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/character.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/character.h b/src/character.h
index c41c5daa906..255afb2a0b1 100644
--- a/src/character.h
+++ b/src/character.h
@@ -187,7 +187,7 @@ extern char unibyte_has_multibyte_table[256];
187 187
188#define BYTE8_STRING(b, p) \ 188#define BYTE8_STRING(b, p) \
189 ((p)[0] = (0xC0 | (((b) >> 6) & 0x01)), \ 189 ((p)[0] = (0xC0 | (((b) >> 6) & 0x01)), \
190 (p)[1] = (0x80 | ((c) & 0x3F)), \ 190 (p)[1] = (0x80 | ((b) & 0x3F)), \
191 2) 191 2)
192 192
193 193