diff lisp/files.el @ 41343:54db34b4f62c

* files.el (auto-save-file-name-transforms): Put remote files in temporary-file-directory rather than /tmp.
author Kai Großjohann <kgrossjo@eu.uu.net>
date Wed, 21 Nov 2001 08:32:57 +0000
parents f1ec73203c1a
children 020268dd7153
line wrap: on
line diff
--- a/lisp/files.el	Wed Nov 21 06:24:04 2001 +0000
+++ b/lisp/files.el	Wed Nov 21 08:32:57 2001 +0000
@@ -286,7 +286,8 @@
   :group 'auto-save)
 
 (defcustom auto-save-file-name-transforms
-  '(("\\`/[^/]*:\\(.+/\\)*\\(.*\\)" "/tmp/\\2"))
+  `(("\\`/[^/]*:\\(.+/\\)*\\(.*\\)"
+     ,(expand-file-name "\\2" temporary-file-directory)))
   "*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.
@@ -296,8 +297,9 @@
 When one transform applies, its result is final;
 no further transforms are tried.
 
-The default value is set up to put the auto-save file into `/tmp'
-for editing a remote file."
+The default value is set up to put the auto-save file into the
+temporary directory (see the variable `temporary-file-directory') for
+editing a remote file."
   :group 'auto-save
   :type '(repeat (list (string :tag "Regexp") (string :tag "Replacement")))
   :version "21.1")