From dc5142f60ac7a3d58eeb10b2c40ee19edd15bbad Mon Sep 17 00:00:00 2001 From: Kenichi Handa Date: Mon, 4 Oct 2004 01:21:43 +0000 Subject: [PATCH] (Fsubstitute_in_file_name): Fix previous change. --- src/fileio.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/fileio.c b/src/fileio.c index 1da60020e12..ce05ef1a5ea 100644 --- a/src/fileio.c +++ b/src/fileio.c @@ -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); } }