diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2003-04-17 21:55:18 +0000 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2003-04-17 21:55:18 +0000 |
commit | e55b119e97bdd0e7a3044f99cde8119d8cc7095f (patch) | |
tree | f9e79fb1b10adab8e383ae17443157158a4d5e38 /src/charset.h | |
parent | 4b254bbe83254080a21f830768b035e421cada4c (diff) | |
download | emacs-e55b119e97bdd0e7a3044f99cde8119d8cc7095f.tar.gz |
(PARSE_MULTIBYTE_SEQ): Pretend `length' is used.
Diffstat (limited to 'src/charset.h')
-rw-r--r-- | src/charset.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/charset.h b/src/charset.h index 9e2387424c6..97b9801464e 100644 --- a/src/charset.h +++ b/src/charset.h @@ -437,7 +437,7 @@ extern int width_by_char_head[256]; #else /* not BYTE_COMBINING_DEBUG */ #define PARSE_MULTIBYTE_SEQ(str, length, bytes) \ - (bytes) = BYTES_BY_CHAR_HEAD ((str)[0]) + ((void)(length), (bytes) = BYTES_BY_CHAR_HEAD ((str)[0])) #endif /* not BYTE_COMBINING_DEBUG */ |