aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKenichi Handa2004-10-04 01:21:43 +0000
committerKenichi Handa2004-10-04 01:21:43 +0000
commitdc5142f60ac7a3d58eeb10b2c40ee19edd15bbad (patch)
tree423e2118b5e38a82c384a7e3c57e8c87de45ec59
parentdec47cc387d5323b3846b190d3efd688be7334cf (diff)
downloademacs-dc5142f60ac7a3d58eeb10b2c40ee19edd15bbad.tar.gz
emacs-dc5142f60ac7a3d58eeb10b2c40ee19edd15bbad.zip
(Fsubstitute_in_file_name): Fix previous change.
-rw-r--r--src/fileio.c4
1 files 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. */)
2254 convert what we substitute into multibyte. */ 2254 convert what we substitute into multibyte. */
2255 while (*o) 2255 while (*o)
2256 { 2256 {
2257 int c = unibyte_char_to_multibyte (*o); 2257 int c = *o++;
2258 o++; 2258 c = unibyte_char_to_multibyte (c);
2259 x += CHAR_STRING (c, x); 2259 x += CHAR_STRING (c, x);
2260 } 2260 }
2261 } 2261 }