diff options
author | Eli Zaretskii <eliz@gnu.org> | 2002-03-30 07:56:05 +0000 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2002-03-30 07:56:05 +0000 |
commit | b865c14e764ad64f145fcd1e8c2040934a4c1b07 (patch) | |
tree | 62b87c498f9029f7931192a70714f8c3d28d933a /lisp | |
parent | 74974a34cd4652e50017e2b0f230941fea43a6c6 (diff) | |
download | emacs-b865c14e764ad64f145fcd1e8c2040934a4c1b07.tar.gz emacs-b865c14e764ad64f145fcd1e8c2040934a4c1b07.tar.bz2 emacs-b865c14e764ad64f145fcd1e8c2040934a4c1b07.zip |
(auto-save-file-name-transforms): Fix last change.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/files.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/files.el b/lisp/files.el index c771cf01bc1..7875a953449 100644 --- a/lisp/files.el +++ b/lisp/files.el @@ -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. |