aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1998-05-16 17:33:11 +0000
committerRichard M. Stallman1998-05-16 17:33:11 +0000
commita536e299736886f3e7d9c1185c380d67e974679f (patch)
tree4d4a2c5bb2a8bb4ce955ac072772bf82e45384b4
parent472974e9b0fecf38d51e6ec220c44a762298e8d5 (diff)
downloademacs-a536e299736886f3e7d9c1185c380d67e974679f.tar.gz
emacs-a536e299736886f3e7d9c1185c380d67e974679f.zip
(ange-ftp-tmp-name-template): Use temporary-file-directory.
-rw-r--r--lisp/ange-ftp.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/ange-ftp.el b/lisp/ange-ftp.el
index ecee7db88df..0002e3f3c77 100644
--- a/lisp/ange-ftp.el
+++ b/lisp/ange-ftp.el
@@ -701,7 +701,7 @@ These mean that the FTP process should (or already has) been killed."
701 :type 'regexp) 701 :type 'regexp)
702 702
703(defcustom ange-ftp-tmp-name-template 703(defcustom ange-ftp-tmp-name-template
704 (concat system-tmp-directory "/ange-ftp") 704 (expand-file-name "ange-ftp" temporary-file-directory)
705 "*Template used to create temporary files." 705 "*Template used to create temporary files."
706 :group 'ange-ftp 706 :group 'ange-ftp
707 :type 'directory) 707 :type 'directory)