diff options
| author | Paul Eggert | 2011-03-16 00:17:22 -0700 |
|---|---|---|
| committer | Paul Eggert | 2011-03-16 00:17:22 -0700 |
| commit | 9710023e8865ce1ac385526bbc44868cd2189cbd (patch) | |
| tree | d9d320bc43e78a1847ad4fe8a2909e82d8c0bccf /src/editfns.c | |
| parent | 545b49b4ff1d7bd8ee256dec95ea80613537eb75 (diff) | |
| download | emacs-9710023e8865ce1ac385526bbc44868cd2189cbd.tar.gz emacs-9710023e8865ce1ac385526bbc44868cd2189cbd.zip | |
* editfns.c (Ftranslate_region_internal): Mark var as initialized.
Diffstat (limited to 'src/editfns.c')
| -rw-r--r-- | src/editfns.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/editfns.c b/src/editfns.c index b02a92d5b98..1f98ff040b3 100644 --- a/src/editfns.c +++ b/src/editfns.c | |||
| @@ -3028,7 +3028,7 @@ It returns the number of characters changed. */) | |||
| 3028 | EMACS_INT size; /* Size of translate table. */ | 3028 | EMACS_INT size; /* Size of translate table. */ |
| 3029 | EMACS_INT pos, pos_byte, end_pos; | 3029 | EMACS_INT pos, pos_byte, end_pos; |
| 3030 | int multibyte = !NILP (BVAR (current_buffer, enable_multibyte_characters)); | 3030 | int multibyte = !NILP (BVAR (current_buffer, enable_multibyte_characters)); |
| 3031 | int string_multibyte; | 3031 | int string_multibyte IF_LINT (= 0); |
| 3032 | 3032 | ||
| 3033 | validate_region (&start, &end); | 3033 | validate_region (&start, &end); |
| 3034 | if (CHAR_TABLE_P (table)) | 3034 | if (CHAR_TABLE_P (table)) |