+Thu May 23 01:34:26 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
+
+ * tl: Version 7.27 was released.
+ * MEL: Version 4.7.1 was released.
+ * tm: Version 7.64 was released.
+
+Wed May 22 02:26:49 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
+
+ * tm-view.el (mime-preview/insert-content-button): fixed.
+
+ * tm-edit.el (mime-editor/yank-ignored-field-list): add "Replied";
+ remove "Sender".
+
+ (mime-editor/insert-binary-buffer, mime-editor/normalize-body):
+ Argument order of function `mime-encode-region' was changed.
+
+ (mime-editor::edit-again): Argument order of function
+ `mime-decode-region' was changed.
+
+\f
Mon May 20 16:24:30 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* tl: Version 7.26 was released.
FILES = $(TM_FILES) $(TM_MUA_FILES) $(MEL_FILES) $(TL_FILES)
-TARFILE = tm7.63.tar.gz
+TARFILE = tm7.64.tar.gz
elc:
$(EMACS) $(FLAGS) -l inst-tm -f compile-tm
(expand-file-name "../../.." exec-directory)
(expand-file-name "../../../.." data-directory)
)) ; install to shared directory (maybe "/usr/local")
-;;(setq PREFIX "~/") ; install to you home directory
+;;(setq PREFIX "~/") ; install to your home directory
;; Please specify tm package prefix [optional]
(setq TM_PACKAGE_PREFIX "")
;;; MORIOKA Tomohiko <morioka@jaist.ac.jp>
;;; Maintainer: MORIOKA Tomohiko <morioka@jaist.ac.jp>
;;; Created: 1994/08/21 renamed from mime.el
-;;; Version: $Revision: 7.62 $
+;;; Version: $Revision: 7.63 $
;;; Keywords: mail, news, MIME, multimedia, multilingual
;;;
;;; This file is part of tm (Tools for MIME).
;;;
(defconst mime-editor/RCS-ID
- "$Id: tm-edit.el,v 7.62 1996/05/19 16:16:42 morioka Exp $")
+ "$Id: tm-edit.el,v 7.63 1996/05/22 02:25:54 morioka Exp $")
(defconst mime-editor/version (get-version-string mime-editor/RCS-ID))
;;;
(defvar mime-editor/yank-ignored-field-list
- '("Received" "Sender" "Approved" "Path" "Status" "X-VM-.*" "X-UIDL")
+ '("Received" "Approved" "Path" "Replied" "Status" "X-VM-.*" "X-UIDL")
"Delete these fields from original message when it is inserted
as message/rfc822 part.
Each elements are regexp of field-name. [tm-edit.el]")
(insert-buffer-substring buffer)
;; Encode binary message if necessary.
(if encoding
- (mime-encode-region encoding start (point-max))))
+ (mime-encode-region start (point-max) encoding)
+ ))
(if hide-p
(progn
(mime-flag-region (point-min) (1- (point-max)) ?\^M)
)
(mime-charset-encode-region beg (mime-editor/content-end)
charset)
- (mime-encode-region encoding beg (mime-editor/content-end))
+ (mime-encode-region beg (mime-editor/content-end) encoding)
(mime-editor/define-encoding encoding)
))
(forward-line 1)
(end (mime-editor/content-end))
(body (buffer-substring beg end))
)
- (mime-encode-region encoding beg end)
+ (mime-encode-region beg end encoding)
(mime-editor/define-encoding encoding))
(forward-line 1)
)
(if (search-forward "\n\n" nil t)
(progn
(mime-decode-region
- encoding (match-end 0)(point-max))
+ (match-end 0)(point-max) encoding)
(setq encoded t
encoding nil)
)))))))
;;; modified by Steven L. Baur <steve@miranova.com>
;;; Maintainer: MORIOKA Tomohiko <morioka@jaist.ac.jp>
;;; Created: 1994/7/13 (1994/8/31 obsolete tm-body.el)
-;;; Version: $Revision: 7.63 $
+;;; Version: $Revision: 7.64 $
;;; Keywords: mail, news, MIME, multimedia
;;;
;;; This file is part of tm (Tools for MIME).
;;;
(defconst mime-viewer/RCS-ID
- "$Id: tm-view.el,v 7.63 1996/05/20 14:56:33 morioka Exp $")
+ "$Id: tm-view.el,v 7.64 1996/05/22 02:26:49 morioka Exp $")
(defconst mime-viewer/version (get-version-string mime-viewer/RCS-ID))
(defconst mime/viewer-version mime-viewer/version)
(let ((server (assoc "server" params)))
(setq access-type (cdr access-type))
(if server
- (format "[%s %s ([%s] %s)]\n" num subj
- access-type (cdr server))
+ (insert (format "[%s %s ([%s] %s)]\n" num subj
+ access-type (cdr server)))
(let ((site (assoc-value "site" params))
(dir (assoc-value "directory" params))
)