]> git.eshelyaron.com Git - emacs.git/commitdiff
(small-temporary-file-directory): New variable.
authorEli Zaretskii <eliz@gnu.org>
Thu, 2 Sep 1999 12:24:54 +0000 (12:24 +0000)
committerEli Zaretskii <eliz@gnu.org>
Thu, 2 Sep 1999 12:24:54 +0000 (12:24 +0000)
lisp/files.el

index ee0e0c37f85ffb0f5b3a54f584aecc76ffb6bd4a..5383a598e2c81833ae393b145f4b329924ee33b8 100644 (file)
@@ -380,6 +380,12 @@ and ignores this variable."
          (or (getenv "TMPDIR") (getenv "TMP") (getenv "TEMP") "/tmp"))))
   "The directory for writing temporary files.")
 
+(defvar small-temporary-file-directory
+  (if (eq system-type 'ms-dos) (getenv "TMPDIR") temporary-file-directory)
+  "The directory for writing small temporary files.
+This is for systems that have fast storage with limited space,
+such as a RAM disk.")
+
 ;; The system null device. (Should reference NULL_DEVICE from C.)
 (defvar null-device "/dev/null" "The system null device.")