]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/files.el (make-backup-file-name-1): Fix scoping error.
authorMichael Albinus <michael.albinus@gmx.de>
Sat, 2 Dec 2017 11:27:27 +0000 (12:27 +0100)
committerMichael Albinus <michael.albinus@gmx.de>
Sat, 2 Dec 2017 11:27:27 +0000 (12:27 +0100)
lisp/files.el

index 1bdb6d38ab98ebc86d2c92758c152742005f995d..ef4c2ea818579c5d31d61251bc47f33c494c390c 100644 (file)
@@ -4673,15 +4673,15 @@ The function `find-backup-file-name' also uses this."
                                       (if (eq (aref file 2) ?/)
                                           ""
                                         "/")
-                                      (substring file 2))))))
-             ;; Make the name unique by substituting directory
-             ;; separators.  It may not really be worth bothering about
-             ;; doubling `!'s in the original name...
-             (expand-file-name
-              (subst-char-in-string
-               ?/ ?!
-               (replace-regexp-in-string "!" "!!" file))
-              backup-directory)))
+                                      (substring file 2)))))))
+           ;; Make the name unique by substituting directory
+           ;; separators.  It may not really be worth bothering about
+           ;; doubling `!'s in the original name...
+           (expand-file-name
+            (subst-char-in-string
+             ?/ ?!
+             (replace-regexp-in-string "!" "!!" file))
+            backup-directory))
        (expand-file-name (file-name-nondirectory file)
                          (file-name-as-directory abs-backup-directory))))))