mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-21 05:00:47 -08:00
* coding.c (decode_coding_emacs_mule): Mark variables that gcc
-Wuninitialized does not deduce are never used uninitialized.
This commit is contained in:
parent
5f58e762f9
commit
ee05f96119
2 changed files with 4 additions and 4 deletions
|
|
@ -2365,7 +2365,7 @@ decode_coding_emacs_mule (struct coding_system *coding)
|
|||
|
||||
while (1)
|
||||
{
|
||||
int c, id;
|
||||
int c, id IF_LINT (= 0);
|
||||
|
||||
src_base = src;
|
||||
consumed_chars_base = consumed_chars;
|
||||
|
|
@ -2410,7 +2410,7 @@ decode_coding_emacs_mule (struct coding_system *coding)
|
|||
}
|
||||
else
|
||||
{
|
||||
int nchars, nbytes;
|
||||
int nchars IF_LINT (= 0), nbytes IF_LINT (= 0);
|
||||
/* emacs_mule_char can load a charset map from a file, which
|
||||
allocates a large structure and might cause buffer text
|
||||
to be relocated as result. Thus, we need to remember the
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue