diff options
Diffstat (limited to 'src/coding.c')
| -rw-r--r-- | src/coding.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/coding.c b/src/coding.c index 3df34cea173..096268d1a72 100644 --- a/src/coding.c +++ b/src/coding.c | |||
| @@ -2365,7 +2365,7 @@ decode_coding_emacs_mule (struct coding_system *coding) | |||
| 2365 | 2365 | ||
| 2366 | while (1) | 2366 | while (1) |
| 2367 | { | 2367 | { |
| 2368 | int c, id; | 2368 | int c, id IF_LINT (= 0); |
| 2369 | 2369 | ||
| 2370 | src_base = src; | 2370 | src_base = src; |
| 2371 | consumed_chars_base = consumed_chars; | 2371 | consumed_chars_base = consumed_chars; |
| @@ -2410,7 +2410,7 @@ decode_coding_emacs_mule (struct coding_system *coding) | |||
| 2410 | } | 2410 | } |
| 2411 | else | 2411 | else |
| 2412 | { | 2412 | { |
| 2413 | int nchars, nbytes; | 2413 | int nchars IF_LINT (= 0), nbytes IF_LINT (= 0); |
| 2414 | /* emacs_mule_char can load a charset map from a file, which | 2414 | /* emacs_mule_char can load a charset map from a file, which |
| 2415 | allocates a large structure and might cause buffer text | 2415 | allocates a large structure and might cause buffer text |
| 2416 | to be relocated as result. Thus, we need to remember the | 2416 | to be relocated as result. Thus, we need to remember the |