mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-21 04:17:35 +00:00
(command-line): Compute the value of
small-temporary-file-directory.
This commit is contained in:
parent
9531ab86d9
commit
607f86f527
1 changed files with 4 additions and 0 deletions
|
|
@ -504,6 +504,10 @@ or `CVS', and any subdirectory that contains a file named `.nosearch'."
|
|||
(or (getenv "TMPDIR") (getenv "TMP") (getenv "TEMP") "SYS$SCRATCH:"))
|
||||
(t
|
||||
(or (getenv "TMPDIR") (getenv "TMP") (getenv "TEMP") "/tmp")))))
|
||||
(setq small-temporary-file-directory
|
||||
(if (eq system-type 'ms-dos)
|
||||
(getenv "TMPDIR")
|
||||
temporary-file-directory))
|
||||
|
||||
;; See if we should import version-control from the environment variable.
|
||||
(let ((vc (getenv "VERSION_CONTROL")))
|
||||
|
|
|
|||
Loading…
Reference in a new issue