]> git.eshelyaron.com Git - emacs.git/commitdiff
Quote file-truename symlink to "../foo:bar:"
authorPaul Eggert <eggert@cs.ucla.edu>
Wed, 30 Aug 2017 21:45:52 +0000 (14:45 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Wed, 30 Aug 2017 21:46:57 +0000 (14:46 -0700)
Problem reported by Michael Albinus (Bug#28264#19).
* lisp/files.el (files--splice-dirname-file): Fix bug where
a relative symlink to "../foo:bar:" did not quote the result.

lisp/files.el

index 8cec3d45dce31eac9d257af198e77b3f20d96f81..43aec8173d98494e3eb9dd078859161040e735aa 100644 (file)
@@ -1155,19 +1155,19 @@ names beginning with `~'."
 
 (defun files--splice-dirname-file (dirname file)
   "Splice DIRNAME to FILE like the operating system would.
-If FILENAME is relative, return DIRNAME concatenated to FILE.
+If FILE is relative, return DIRNAME concatenated to FILE.
 Otherwise return FILE, quoted as needed if DIRNAME and FILE have
 different handlers; although this quoting is dubious if DIRNAME
 is magic, it is not clear what would be better.  This function
 differs from `expand-file-name' in that DIRNAME must be a
 directory name and leading `~' and `/:' are not special in FILE."
-  (if (files--name-absolute-system-p file)
-      (if (eq (find-file-name-handler dirname 'file-symlink-p)
-             (find-file-name-handler file 'file-symlink-p))
-         file
-        ;; If `file' is remote, we want to quote it at the beginning.
-        (let (file-name-handler-alist) (file-name-quote file)))
-    (concat dirname file)))
+  (let ((unquoted (if (files--name-absolute-system-p file)
+                     file
+                   (concat dirname file))))
+    (if (eq (find-file-name-handler dirname 'file-symlink-p)
+           (find-file-name-handler unquoted 'file-symlink-p))
+       unquoted
+      (let (file-name-handler-alist) (file-name-quote unquoted)))))
 
 (defun file-truename (filename &optional counter prev-dirs)
   "Return the truename of FILENAME.