+Tue Jul 23 14:58:47 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
+
+ * tl: Version 7.43.1 was released.
+
+ * emu.el (emacs-minor-version): fixed for NEpoch.
+
+Mon Jul 22 18:54:54 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
+
+ * emu-xemacs.el, emu-19.el, emu-18.el
+ (enable-invisible): New macro.
+ (end-of-invisible): New macro.
+
+ * emu-x20.el: add `(require 'cyrillic)'.
+
+\f
Wed Jul 17 05:35:50 1996 MORIOKA Tomohiko <morioka@jaist.ac.jp>
* tl: Version 7.43 was released.
tl/*.el tl/*.bdf \
tl/doc/*.ol tl/doc/*.tex tl/doc/*.texi tl/ChangeLog
-TARFILE = tl-7.31.1.tar
+TARFILE = tl-7.43.1.tar
elc:
;;;
;;; Author: MORIOKA Tomohiko <morioka@jaist.ac.jp>
;;; Version:
-;;; $Id: emu-18.el,v 7.18 1996/05/26 02:05:52 morioka Exp $
+;;; $Id: emu-18.el,v 7.19 1996/07/22 18:31:23 morioka Exp $
;;; Keywords: emulation, compatibility
;;;
;;; This file is part of tl (Tiny Library).
;;; @@ visible/invisible
;;;
+(defmacro enable-invisible ()
+ (`
+ (progn
+ (make-local-variable 'original-selective-display)
+ (setq original-selective-display selective-display)
+ (setq selective-display t)
+ )))
+
+(defmacro end-of-invisible ()
+ (` (setq selective-display
+ (if (boundp 'original-selective-display)
+ original-selective-display))
+ ))
+
(defun invisible-region (start end)
(let ((buffer-read-only nil) ;Okay even if write protected.
(modp (buffer-modified-p)))
;;;
;;; Author: MORIOKA Tomohiko <morioka@jaist.ac.jp>
;;; Version:
-;;; $Id: emu-19.el,v 7.7 1996/05/26 01:48:47 morioka Exp $
+;;; $Id: emu-19.el,v 7.8 1996/07/22 18:52:53 morioka Exp $
;;; Keywords: emulation, compatibility
;;;
;;; This file is part of tl (Tiny Library).
;;; @@ visible/invisible
;;;
+(defmacro enable-invisible ())
+
+(defmacro end-of-invisible ())
+
(defun invisible-region (start end)
(if (save-excursion
(goto-char (1- end))
;;;
;;; Author: MORIOKA Tomohiko <morioka@jaist.ac.jp>
;;; Version:
-;;; $Id: emu-x20.el,v 7.33 1996/07/15 08:29:22 morioka Exp $
+;;; $Id: emu-x20.el,v 7.34 1996/07/22 17:48:45 morioka Exp $
;;; Keywords: emulation, compatibility, Mule, XEmacs
;;;
;;; This file is part of tl (Tiny Library).
;;;
;;; Code:
+(require 'cyrillic)
(require 'emu-xemacs)
(defvar xemacs-beta-version
(defconst *hz* 'hz)
(defconst *big5* 'big5)
(defconst *euc-kr* 'euc-kr)
-(defconst *koi8* nil)
+(defconst *koi8* 'koi8)
(defvar code-converter-is-broken
(and xemacs-beta-version (<= xemacs-beta-version 26)))
;;;
;;; Author: MORIOKA Tomohiko <morioka@jaist.ac.jp>
;;; Version:
-;;; $Id: emu-xemacs.el,v 7.8 1996/05/26 02:13:21 morioka Exp $
+;;; $Id: emu-xemacs.el,v 7.9 1996/07/22 18:54:54 morioka Exp $
;;; Keywords: emulation, compatibility, XEmacs
;;;
;;; This file is part of tl (Tiny Library).
;;; @@ visible/invisible
;;;
+(defmacro enable-invisible ())
+
+(defmacro end-of-invisible ())
+
(defun invisible-region (start end)
(if (save-excursion
(goto-char start)
;;; Author: MORIOKA Tomohiko <morioka@jaist.ac.jp>
;;; modified by KOBAYASHI Shuhei <shuhei-k@jaist.ac.jp>
;;; Version:
-;;; $Id: emu.el,v 7.19 1996/07/11 14:11:12 morioka Exp $
+;;; $Id: emu.el,v 7.20 1996/07/23 14:58:47 morioka Exp $
;;; Keywords: emulation, compatibility, NEmacs, Mule, XEmacs
;;;
;;; This file is part of tl (Tiny Library).
(or (boundp 'emacs-minor-version)
(defconst emacs-minor-version
(string-to-int
- (substring emacs-version (string-match "18\\." emacs-version)))))
+ (substring
+ emacs-version
+ (string-match (format "%d\\." emacs-major-version) emacs-version)
+ ))))
(defvar running-emacs-18 (<= emacs-major-version 18))
(defvar running-xemacs (string-match "XEmacs" emacs-version))