+1998-10-24 MORIOKA Tomohiko <morioka@jaist.ac.jp>
+
+ * mime-play.el, mime-pgp.el, mime-partial.el, mime-image.el,
+ mime-edit.el: Use `temporary-file-directory' instead of
+ `mime-temp-directory'.
+
+\f
1998-10-23 Katsumi Yamaoka <yamaoka@jpl.org>
* WEMI: Version 1.10.0 (Shin-Kambara) released.
1.9.0 Isurugi \e$(B@PF0\e(B
1.9.1 Kurikara \e$(B6fMx2@Me\e(B
1.10.0 Tsubata \e$(BDEH(\e(B
------ Morimoto \e$(B?9K\\e(B
+1.10.1 Morimoto \e$(B?9K\\e(B
------- Higashi-Kanazawa \e$(BEl6bBt\e(B
------- Kanazawa \e$(B6bBt\e(B ; <=> \e$(BKLN&E4F;\e(B \e$(BKLE46bBt\e(B
------- Nishi-Kanazawa \e$(B@>6bBt\e(B ; <=> \e$(BKLN&E4F;\e(B \e$(B?7@>6bBt\e(B
1.9.0 Fuji \e$(BIY;N\e(B ; = JR \e$(B?H1d@~\e(B
1.9.1 Fujikawa \e$(BIY;N@n\e(B
1.10.0 Shin-Kambara \e$(B?73w86\e(B
------- Kambara \e$(B3w86\e(B
+1.10.1 Kambara \e$(B3w86\e(B
------ Yui \e$(BM3Hf\e(B
------ Okitsu \e$(B6=DE\e(B
------ Shimizu \e$(B@6?e\e(B
(let* ((mime-edit-draft-file-name
(or (buffer-file-name)
(make-temp-name
- (expand-file-name "mime-draft" mime-temp-directory))))
+ (expand-file-name "mime-draft" temporary-file-directory))))
(separator mail-header-separator)
(id (concat "\""
(replace-space-with-underline (current-time-string))
((eq (aref gl 0) 'xbm)
(let ((xbm-file
(make-temp-name
- (expand-file-name "tm" mime-temp-directory))))
+ (expand-file-name "tm" temporary-file-directory))))
(with-temp-buffer
(insert (aref gl 2))
(write-region (point-min)(point-max) xbm-file)
(subject-buf (eval (cdr (assq 'summary-buffer-exp situation))))
subject-id
(root-dir (expand-file-name
- (concat "m-prts-" (user-login-name)) mime-temp-directory))
+ (concat "m-prts-" (user-login-name))
+ temporary-file-directory))
(request-partial-message-method
(cdr (assq 'request-partial-message-method situation)))
full-file)
(1- knum)
(1+ knum)))
(orig-entity (nth onum (mime-entity-children mother)))
- (basename (expand-file-name "tm" mime-temp-directory))
+ (basename (expand-file-name "tm" temporary-file-directory))
(orig-file (make-temp-name basename))
(sig-file (concat orig-file ".sig"))
)
(name (mime-entity-safe-filename entity)))
(setq name
(if (and name (not (string= name "")))
- (expand-file-name name mime-temp-directory)
+ (expand-file-name name temporary-file-directory)
(make-temp-name
- (expand-file-name "EMI" mime-temp-directory))
+ (expand-file-name "EMI" temporary-file-directory))
))
(mime-write-entity-content entity name)
(message "External method is starting...")
(goto-char (mime-entity-point-min entity))
(let* ((root-dir
(expand-file-name
- (concat "m-prts-" (user-login-name)) mime-temp-directory))
+ (concat "m-prts-" (user-login-name)) temporary-file-directory))
(id (cdr (assoc "id" cal)))
(number (cdr (assoc "number" cal)))
(total (cdr (assoc "total" cal)))
(require 'custom)
-(defconst mime-user-interface-product '["WEMI" (1 10 0) "Shin-Kambara"]
+(defconst mime-user-interface-product '["WEMI" (1 10 1) "Kambara"]
"Implementation name, version name and numbers of MIME-kernel package.")
(autoload 'mule-caesar-region "mule-caesar"