aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKenichi Handa2000-09-19 00:33:58 +0000
committerKenichi Handa2000-09-19 00:33:58 +0000
commitb10d420d0f6d5e36f0dea4d673f942477da29b3a (patch)
treeae72b697072d40539c1da848bdfe767655737100 /src
parenta3d8fcf244a7012fd3c283460bc57a6b1fcd4918 (diff)
downloademacs-b10d420d0f6d5e36f0dea4d673f942477da29b3a.tar.gz
emacs-b10d420d0f6d5e36f0dea4d673f942477da29b3a.zip
(UNIBYTE_STR_AS_MULTIBYTE_P): Fix previous change.
Diffstat (limited to 'src')
-rw-r--r--src/charset.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/charset.h b/src/charset.h
index 20b1fb72a7b..83b31abf1f6 100644
--- a/src/charset.h
+++ b/src/charset.h
@@ -448,8 +448,8 @@ extern int width_by_char_head[256];
448 (((str)[0] < 0x80 || (str)[0] >= 0xA0) \ 448 (((str)[0] < 0x80 || (str)[0] >= 0xA0) \
449 ? (bytes) = 1 \ 449 ? (bytes) = 1 \
450 : (((bytes) = BYTES_BY_CHAR_HEAD ((str)[0])), \ 450 : (((bytes) = BYTES_BY_CHAR_HEAD ((str)[0])), \
451 ((str)[0] != LEADING_CODE_8_BIT_CONTROL \ 451 ((bytes) > 1 && (bytes) <= (length) \
452 && (bytes) <= (length) \ 452 && (str)[0] != LEADING_CODE_8_BIT_CONTROL \
453 && !CHAR_HEAD_P ((str)[1]) \ 453 && !CHAR_HEAD_P ((str)[1]) \
454 && ((bytes) == 2 \ 454 && ((bytes) == 2 \
455 || (!CHAR_HEAD_P ((str)[2]) \ 455 || (!CHAR_HEAD_P ((str)[2]) \