# HG changeset patch # User Kenichi Handa # Date 1096852903 0 # Node ID 226b3b1d1affdbd39cecc3ffe5096d3efa218abe # Parent c9046301e28be811c406554bcd5080a7f13affb6 (Fsubstitute_in_file_name): Fix previous change. diff -r c9046301e28b -r 226b3b1d1aff src/fileio.c --- a/src/fileio.c Mon Oct 04 01:19:47 2004 +0000 +++ b/src/fileio.c Mon Oct 04 01:21:43 2004 +0000 @@ -2254,8 +2254,8 @@ 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); } }