+2008-04-28 Andreas Schwab <schwab@suse.de>
+
+ * dired.c (file_name_completion): Fix another mixing of encoded
+ and decoded names.
+
2008-04-28 Juanma Barranquero <lekktu@gmail.com>
* w32fns.c (Fw32_define_rgb_color): Fix typo in docstring.
bestmatch = DECODE_FILE (bestmatch);
return bestmatch;
}
- if (matchcount == 1 && bestmatchsize == SCHARS (file))
+ if (matchcount == 1 && bestmatchsize == SCHARS (encoded_file))
return Qt;
bestmatch = Fsubstring (bestmatch, make_number (0),
make_number (bestmatchsize));