mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-03-07 14:31:41 -08:00
(Fsubstitute_in_file_name): Fix previous change.
This commit is contained in:
parent
dec47cc387
commit
dc5142f60a
1 changed files with 2 additions and 2 deletions
|
|
@ -2254,8 +2254,8 @@ duplicates what `expand-file-name' does. */)
|
|||
convert what we substitute into multibyte. */
|
||||
while (*o)
|
||||
{
|
||||
int c = unibyte_char_to_multibyte (*o);
|
||||
o++;
|
||||
int c = *o++;
|
||||
c = unibyte_char_to_multibyte (c);
|
||||
x += CHAR_STRING (c, x);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue