(mime-temp-directory): New variable (moved from mel.el).
authormorioka <morioka>
Wed, 6 May 1998 06:25:38 +0000 (06:25 +0000)
committermorioka <morioka>
Wed, 6 May 1998 06:25:38 +0000 (06:25 +0000)
mime-def.el

index c663649..1812efc 100644 (file)
@@ -25,7 +25,7 @@
 ;;; Code:
 
 (defconst mime-spadework-module-version-string
 ;;; Code:
 
 (defconst mime-spadework-module-version-string
-  "FLIM 1.1.1 - \"J\e-Dþjò\"")\e-A
+  "FLIM 1.1.1 - \"J\e-Dþjò\" ")\e-A
 
 (require 'custom)
 
 
 (require 'custom)
 
 (custom-handle-keyword 'default-mime-charset :group 'mime
                       'custom-variable)
 
 (custom-handle-keyword 'default-mime-charset :group 'mime
                       'custom-variable)
 
+(defvar mime-temp-directory (or (getenv "MIME_TMP_DIR")
+                               (getenv "TM_TMP_DIR")
+                               (getenv "TMPDIR")
+                               (getenv "TMP")
+                               (getenv "TEMP")
+                               "/tmp/")
+  "*Directory for temporary files.")
+
+
 (unless (fboundp 'butlast)
   (defun butlast (x &optional n)
     "Returns a copy of LIST with the last N elements removed."
 (unless (fboundp 'butlast)
   (defun butlast (x &optional n)
     "Returns a copy of LIST with the last N elements removed."