diff options
| author | Stefan Monnier | 2003-04-17 21:55:18 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2003-04-17 21:55:18 +0000 |
| commit | 304f9d2a3de9355ff4bfa6e22b03de76404b2916 (patch) | |
| tree | 730e6dca4998158d5351bd1c2a11641631af33eb /src | |
| parent | d895183d11c0908edb7aef3e2885480cfe1ac5ae (diff) | |
| download | emacs-304f9d2a3de9355ff4bfa6e22b03de76404b2916.tar.gz emacs-304f9d2a3de9355ff4bfa6e22b03de76404b2916.zip | |
(PARSE_MULTIBYTE_SEQ): Pretend `length' is used.
Diffstat (limited to 'src')
| -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]; | |||
| 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 | ||