aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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 }