# HG changeset patch # User Eli Zaretskii # Date 1017474965 0 # Node ID 166f03d282d776c3cf6c6b02873d75daa27308ed # Parent 2bc6f0ac139419e87e79e6ab56fc7ba9e1ab08ea (auto-save-file-name-transforms): Fix last change. diff -r 2bc6f0ac1394 -r 166f03d282d7 lisp/files.el --- a/lisp/files.el Sat Mar 30 07:40:54 2002 +0000 +++ b/lisp/files.el Sat Mar 30 07:56:05 2002 +0000 @@ -296,7 +296,7 @@ `(("\\`/[^/]*:\\(.+/\\)*\\(.*\\)" ;; 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.