]> git.eshelyaron.com Git - emacs.git/commitdiff
(PARSE_MULTIBYTE_SEQ): Pretend `length' is used.
authorStefan Monnier <monnier@iro.umontreal.ca>
Thu, 17 Apr 2003 21:55:18 +0000 (21:55 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Thu, 17 Apr 2003 21:55:18 +0000 (21:55 +0000)
src/charset.h

index 9e2387424c66864ce446eb3b137245b9efb51f7e..97b9801464e05b3b0ac60f9d3a773be8a9208fac 100644 (file)
@@ -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 */