1
Fork 0
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:
Kenichi Handa 2004-10-04 01:21:43 +00:00
parent dec47cc387
commit dc5142f60a

View file

@ -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);
}
}