]> git.eshelyaron.com Git - emacs.git/commitdiff
(auto-save-file-name-transforms): Fix last change.
authorEli Zaretskii <eliz@gnu.org>
Sat, 30 Mar 2002 07:56:05 +0000 (07:56 +0000)
committerEli Zaretskii <eliz@gnu.org>
Sat, 30 Mar 2002 07:56:05 +0000 (07:56 +0000)
lisp/files.el

index c771cf01bc1f53fed194d60ae77333ee7bb99ac6..7875a9534491ab8901324091b357df228408d473 100644 (file)
@@ -296,7 +296,7 @@ Normally auto-save files are written under other names."
   `(("\\`/[^/]*:\\(.+/\\)*\\(.*\\)"
      ;; 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")))
+     ,(concat 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.