Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
9710023e
Commit
9710023e
authored
Mar 16, 2011
by
Paul Eggert
Browse files
* editfns.c (Ftranslate_region_internal): Mark var as initialized.
parent
545b49b4
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
1 deletion
+2
-1
src/ChangeLog
src/ChangeLog
+1
-0
src/editfns.c
src/editfns.c
+1
-1
No files found.
src/ChangeLog
View file @
9710023e
...
...
@@ -10,6 +10,7 @@
(Fformat_time_string, Fencode_time, Finsert_char):
(Ftranslate_region_internal, Fformat):
Rename or remove local vars to avoid shadowing.
(Ftranslate_region_internal): Mark var as initialized.
2011-03-15 Paul Eggert <eggert@cs.ucla.edu>
src/editfns.c
View file @
9710023e
...
...
@@ -3028,7 +3028,7 @@ It returns the number of characters changed. */)
EMACS_INT
size
;
/* Size of translate table. */
EMACS_INT
pos
,
pos_byte
,
end_pos
;
int
multibyte
=
!
NILP
(
BVAR
(
current_buffer
,
enable_multibyte_characters
));
int
string_multibyte
;
int
string_multibyte
IF_LINT
(
=
0
)
;
validate_region
(
&
start
,
&
end
);
if
(
CHAR_TABLE_P
(
table
))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment