aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2003-04-17 21:55:18 +0000
committerStefan Monnier2003-04-17 21:55:18 +0000
commit304f9d2a3de9355ff4bfa6e22b03de76404b2916 (patch)
tree730e6dca4998158d5351bd1c2a11641631af33eb
parentd895183d11c0908edb7aef3e2885480cfe1ac5ae (diff)
downloademacs-304f9d2a3de9355ff4bfa6e22b03de76404b2916.tar.gz
emacs-304f9d2a3de9355ff4bfa6e22b03de76404b2916.zip
(PARSE_MULTIBYTE_SEQ): Pretend `length' is used.
-rw-r--r--src/charset.h2
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];
437#else /* not BYTE_COMBINING_DEBUG */ 437#else /* not BYTE_COMBINING_DEBUG */
438 438
439#define PARSE_MULTIBYTE_SEQ(str, length, bytes) \ 439#define PARSE_MULTIBYTE_SEQ(str, length, bytes) \
440 (bytes) = BYTES_BY_CHAR_HEAD ((str)[0]) 440 ((void)(length), (bytes) = BYTES_BY_CHAR_HEAD ((str)[0]))
441 441
442#endif /* not BYTE_COMBINING_DEBUG */ 442#endif /* not BYTE_COMBINING_DEBUG */
443 443