]> git.eshelyaron.com Git - emacs.git/commitdiff
(command-line): Compute the value of
authorEli Zaretskii <eliz@gnu.org>
Thu, 2 Sep 1999 12:30:24 +0000 (12:30 +0000)
committerEli Zaretskii <eliz@gnu.org>
Thu, 2 Sep 1999 12:30:24 +0000 (12:30 +0000)
small-temporary-file-directory.

lisp/startup.el

index d2b2afd57feb5425718a052ee7a9caef14248848..cb8f0cef47e7485cccaf33fd00ea91641d2227f3 100644 (file)
@@ -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")))