(auto-save-file-name-transforms): Don't run "\\2" via expand-file-name.
authorEli Zaretskii <eliz@gnu.org>
Fri, 29 Mar 2002 14:02:54 +0000 (14:02 +0000)
committerEli Zaretskii <eliz@gnu.org>
Fri, 29 Mar 2002 14:02:54 +0000 (14:02 +0000)
lisp/files.el

index c90e75f..c771cf0 100644 (file)
@@ -294,7 +294,9 @@ Normally auto-save files are written under other names."
 
 (defcustom auto-save-file-name-transforms
   `(("\\`/[^/]*:\\(.+/\\)*\\(.*\\)"
-     ,(expand-file-name "\\2" temporary-file-directory)))
+     ;; Don't put "\\2" inside expand-file-name, since it will be
+     ;; transformed to "/2" on DOS/Windows.
+     ,(concat (expand-file-name temporary-file-directory) "\\2")))
   "*Transforms to apply to buffer file name before making auto-save file name.
 Each transform is a list (REGEXP REPLACEMENT):
 REGEXP is a regular expression to match against the file name.