Skip to content

Commit

Permalink
tm 7.52.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
morioka committed Mar 9, 1998
1 parent c28ca08 commit 74bd4c4
Show file tree
Hide file tree
Showing 4 changed files with 58 additions and 18 deletions.
48 changes: 48 additions & 0 deletions ChangeLog
Original file line number Original file line Diff line number Diff line change
@@ -1,3 +1,51 @@
Sat Apr 20 13:10:42 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>

* tl: Version 7.19.2 was released.

Fri Apr 19 19:24:32 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>

* tl-822.el (rfc822/parse-addresses): use `nreverse'

* tl-822.el (rfc822/parse-group): use `nreverse'

* tl-822.el (rfc822/parse-token-or-comment): use `nreverse'

* tl-822.el (rfc822/parse-ascii-token): use `nreverse'

* tl-822.el (rfc822/parse-token): use `nreverse'

* tl-822.el (rfc822/lexical-analyze): use `nreverse'

Fri Apr 19 18:48:55 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>

* tl-822.el (rfc822/address-string): support group
(rfc822/full-name-string): support group

Fri Apr 19 07:44:39 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>

* tl-seq.el (foldr): fixed

Fri Apr 19 07:26:08 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>

* tl-seq.el (foldl): use `1+'

* tl-seq.el (foldr): New function

Wed Apr 17 15:18:54 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>

* emu-mule.el: use `running-emacs-19' and `running-emacs-18'.

* emu-nemacs.el: delete definition of `emacs-major-version'.

* emu-orig.el: use `running-emacs-19'.

* emu.el: define `emacs-major-version' if not bound.

* emu-mule.el: delete check and define `emacs-major-version'.

* emu-orig.el: use `running-xemacs'.


Mon Apr 15 08:57:58 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp> Mon Apr 15 08:57:58 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>


* tl: Version 7.19.1 was released. * tl: Version 7.19.1 was released.
Expand Down
8 changes: 2 additions & 6 deletions emu-mule.el
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -41,10 +41,6 @@ whose return value applied function PRED is not nil.
)) ))
)) ))


(if (not (boundp 'emacs-major-version))
(defconst emacs-major-version (string-to-int emacs-version))
)



;;; @ leading-character ;;; @ leading-character
;;; ;;;
Expand All @@ -59,7 +55,7 @@ whose return value applied function PRED is not nil.
;;; @ version specific features ;;; @ version specific features
;;; ;;;


(cond ((>= emacs-major-version 19) (cond (running-emacs-19
(require 'emu-19) (require 'emu-19)
(defun fontset-pixel-size (fontset) (defun fontset-pixel-size (fontset)
(elt (elt
Expand All @@ -72,7 +68,7 @@ whose return value applied function PRED is not nil.
(cdr (get-fontset-info fontset)) (cdr (get-fontset-info fontset))
)) 5)) )) 5))
) )
(t (running-emacs-18
(require 'emu-18) (require 'emu-18)
(defun tl:make-overlay (beg end &optional buffer type)) (defun tl:make-overlay (beg end &optional buffer type))
(defun tl:overlay-put (overlay prop value)) (defun tl:overlay-put (overlay prop value))
Expand Down
6 changes: 0 additions & 6 deletions emu-nemacs.el
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -31,12 +31,6 @@
(require 'emu-18) (require 'emu-18)




;;; @ constants
;;;

(defconst emacs-major-version (string-to-int emacs-version))


;;; @ leading-char ;;; @ leading-char
;;; ;;;


Expand Down
14 changes: 8 additions & 6 deletions emu.el
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -28,20 +28,22 @@
;;; ;;;
;;; Code: ;;; Code:


(defvar running-xemacs (string-match "XEmacs" emacs-version)) (or (boundp 'emacs-major-version)

(defconst emacs-major-version (string-to-int emacs-version)))
(cond ((boundp 'MULE) (require 'emu-mule))
((boundp 'NEMACS)(require 'emu-nemacs))
(t (require 'emu-orig))
)


(defvar running-emacs-18 (<= emacs-major-version 18)) (defvar running-emacs-18 (<= emacs-major-version 18))
(defvar running-xemacs (string-match "XEmacs" emacs-version))
(defvar running-emacs-19 (and (not running-xemacs) (defvar running-emacs-19 (and (not running-xemacs)
(= emacs-major-version 19))) (= emacs-major-version 19)))
(defvar running-emacs-19_29-or-later (defvar running-emacs-19_29-or-later
(or (and running-emacs-19 (>= emacs-minor-version 29)) (or (and running-emacs-19 (>= emacs-minor-version 29))
(>= emacs-major-version 20))) (>= emacs-major-version 20)))


(cond ((boundp 'MULE) (require 'emu-mule))
((boundp 'NEMACS)(require 'emu-nemacs))
(t (require 'emu-orig))
)



;;; @ Emacs 19.29 emulation ;;; @ Emacs 19.29 emulation
;;; ;;;
Expand Down

0 comments on commit 74bd4c4

Please sign in to comment.