1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-30 00:51:50 -08:00

(ange-ftp-tmp-name-template): Use system-tmp-directory.

This commit is contained in:
Richard M. Stallman 1998-05-16 03:38:59 +00:00
parent c11032b95f
commit 8f6769c4f1

View file

@ -700,10 +700,8 @@ These mean that the FTP process should (or already has) been killed."
:group 'ange-ftp
:type 'regexp)
(defcustom ange-ftp-tmp-name-template
(if (memq system-type '(ms-dos windows-nt))
(concat (or (getenv "TEMP") (getenv "TMP") "c:/temp") "/ange-ftp")
"/tmp/ange-ftp")
(defcustom ange-ftp-tmp-name-template
(concat system-tmp-directory "/ange-ftp")
"*Template used to create temporary files."
:group 'ange-ftp
:type 'directory)