+1998-11-30 MORIOKA Tomohiko <morioka@jaist.ac.jp>
+
+ * mime-edit.el (eliminate-top-spaces): New function (moved from
+ mime-def.el of FLIM).
+
+1998-11-17 Kazuhiro Ohta <ohta@ele.cst.nihon-u.ac.jp>
+
+ * mime-partial.el
+ (mime-combine-message/partial-pieces-automatically): Fix
+ DOC-string.
+
+ * mime-view.el (mime-view-buffer): Fix DOC-string.
+
1998-11-25 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* NEWS (Changes in SEMI 1.11): New section.
1.10.1 Morimoto \e$(B?9K\\e(B
1.10.2 Higashi-Kanazawa \e$(BEl6bBt\e(B
1.11.0 Kanazawa \e$(B6bBt\e(B ; <=> \e$(BKLN&E4F;\e(B \e$(BKLE46bBt\e(B
-1.11.1 Nishi-Kanazawa \e$(B@>6bBt\e(B ; <=> \e$(BKLN&E4F;\e(B \e$(B?7@>6bBt\e(B
+1.12.0 Nishi-Kanazawa \e$(B@>6bBt\e(B ; <=> \e$(BKLN&E4F;\e(B \e$(B?7@>6bBt\e(B
------- (JR) Nonoichi \e$(BLn!9;T\e(B
: : :
------- Tsuruga \e$(BFX2l\e(B ; = JR \e$(B>.IM@~\e(B
1.10.1 Kambara \e$(B3w86\e(B
1.10.2 Yui \e$(BM3Hf\e(B
1.11.0 Okitsu \e$(B6=DE\e(B
-1.11.1 Shimizu \e$(B@6?e\e(B
+1.12.0 Shimizu \e$(B@6?e\e(B
------ Kusanagi \e$(BApFe\e(B
------ Shizuoka \e$(B@E2,\e(B
------ Abekawa \e$(B0BG\@n\e(B
"\\):")
"Regexp for deleted header fields when `mime-edit-again' is called.")
+(defsubst eliminate-top-spaces (string)
+ "Eliminate top sequence of space or tab in STRING."
+ (if (string-match "^[ \t]+" string)
+ (substring string (match-end 0))
+ string))
+
(defun mime-edit-decode-multipart-in-buffer (content-type not-decode-text)
(let* ((subtype (mime-content-type-subtype content-type))
(boundary (mime-content-type-parameter content-type "boundary"))
(defun mime-combine-message/partial-pieces-automatically (entity situation)
"Internal method for mime-view to combine message/partial messages
-automatically. This function refers variable
-`mime-request-partial-message-method-alist' to select function to display
-partial messages using mime-view."
+automatically."
(interactive)
(let* ((id (cdr (assoc "id" situation)))
(target (cdr (assq 'major-mode situation)))
keymap of MIME-View mode.
Optional argument REPRESENTATION-TYPE is representation-type of
message. It must be nil, `binary' or `cooked'. If it is nil,
-`binary' is used as default."
+`cooked' is used as default."
(interactive)
(or raw-buffer
(setq raw-buffer (current-buffer)))
(require 'custom)
-(defconst mime-user-interface-product ["WEMI" (1 11 1) "Shimizu"]
+(defconst mime-user-interface-product ["WEMI" (1 12 0) "Shimizu"]
"Implementation name, version name and numbers of MIME-kernel package.")
(autoload 'mule-caesar-region "mule-caesar"