Sync up with the latest semi-1_12. wemi-199812021900
authoryamaoka <yamaoka>
Wed, 2 Dec 1998 02:38:48 +0000 (02:38 +0000)
committeryamaoka <yamaoka>
Wed, 2 Dec 1998 02:38:48 +0000 (02:38 +0000)
ChangeLog
VERSION
mime-edit.el
mime-partial.el
mime-view.el
semi-def.el

index b52865a..0a095e0 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,16 @@
+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.
diff --git a/VERSION b/VERSION
index 1d92e23..e22bf9a 100644 (file)
--- a/VERSION
+++ b/VERSION
@@ -71,7 +71,7 @@
 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
index 873c5bf..56ee40b 100644 (file)
@@ -2589,6 +2589,12 @@ Content-Type: message/partial; id=%s; number=%d; total=%d\n%s\n"
          "\\):")
   "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"))
index e085eab..14b3ff9 100644 (file)
@@ -30,9 +30,7 @@
 
 (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)))
index 1892847..f3c2577 100644 (file)
@@ -939,7 +939,7 @@ to it.  If it is a function, it will be bound as default binding of
 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)))
index ed288bd..14edeb6 100644 (file)
@@ -30,7 +30,7 @@
 
 (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"