]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix bug when visiting euc-jp-encoded directories
authorPaul Eggert <eggert@cs.ucla.edu>
Thu, 20 Feb 2020 01:21:16 +0000 (17:21 -0800)
committerPaul Eggert <eggert@cs.ucla.edu>
Thu, 20 Feb 2020 01:22:27 +0000 (17:22 -0800)
Problem reported by Ken Sasaki (Bug#39672).
* src/fileio.c (Ffile_directory_p):
Encode filename before giving it to file_directory_p.
This fixes a typo introduced in
2019-09-18T02:18:14Z!eggert@cs.ucla.edu.

src/fileio.c

index 34934dd6df64c2b7a7c31660e265606052776527..482f88627a5a9b0e47036f7567b5322a4723dd2e 100644 (file)
@@ -2911,7 +2911,7 @@ See `file-symlink-p' to distinguish symlinks.  */)
   if (!NILP (handler))
     return call2 (handler, Qfile_directory_p, absname);
 
-  return file_directory_p (absname) ? Qt : Qnil;
+  return file_directory_p (ENCODE_FILE (absname)) ? Qt : Qnil;
 }
 
 /* Return true if FILE is a directory or a symlink to a directory.