+1998-05-21 MORIOKA Tomohiko <morioka@jaist.ac.jp>
+
+ * README.en (Mailing lists): Add notice about direct-mail for
+ authors.
+
1998-05-20 Katsumi Yamaoka <yamaoka@jpl.org>
* VERSION: Add new codenames for WEMI.
+1998-05-19 MORIOKA Tomohiko <morioka@jaist.ac.jp>
+
+ * mime-play.el (mime-raw-dired-function): Don't refer
+ 'mime/use-multi-frame.
+
+ * semi-def.el: Abolish variable 'mime/use-multi-frame.
+
+ * Abolish function 'get-version-string because it is
+ not used.
+
\f
1998-05-19 MORIOKA Tomohiko <morioka@jaist.ac.jp>
tm-en-help@chamonix.jaist.ac.jp (English)
tm-ja-help@chamonix.jaist.ac.jp (Japanese)
+ Notice that you should not send mail to author(s), such as
+ morioka@jaist.ac.jp, directly. Because your problem may occur in
+ other environments (if not, it might be your problem, not bug of
+ SEMI). We should discuss in the tm mailing lists. Anyway
+ direct-mail for authors might be ignored. Please send mail to the
+ tm mailing lists.
+
CVS based development
=====================
;;;
(defvar mime-raw-dired-function
- (if mime/use-multi-frame
+ (if (and (>= emacs-major-version 19) window-system)
(function dired-other-frame)
(function mime-raw-dired-function-for-one-frame)
))
"Caesar rotation of current region." t)
-;;; @ variables
-;;;
-
-(defvar mime/use-multi-frame
- (and (>= emacs-major-version 19) window-system))
-
-
;;; @ constants
;;;
))
-;;; @ RCS version
-;;;
-
-(defsubst get-version-string (id)
- "Return a version-string from RCS ID."
- (and (string-match ",v \\([0-9][0-9.][0-9.]+\\)" id)
- (substring id (match-beginning 1)(match-end 1))
- ))
-
-
;;; @ Other Utility
;;;