tm 7.73.
authormorioka <morioka>
Mon, 9 Mar 1998 19:41:10 +0000 (19:41 +0000)
committermorioka <morioka>
Mon, 9 Mar 1998 19:41:10 +0000 (19:41 +0000)
ChangeLog
Makefile
emu-18.el
emu-19.el
emu-x20.el
emu-xemacs.el
emu.el

index 9bde53b..d46831b 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,18 @@
+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.
index 3671b20..62fae45 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -21,7 +21,7 @@ FILES = tl/README.en tl/Makefile tl/mk-tl tl/tl-els \
                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:
index efd408e..a5b5177 100644 (file)
--- a/emu-18.el
+++ b/emu-18.el
@@ -6,7 +6,7 @@
 ;;;
 ;;; 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).
@@ -224,6 +224,20 @@ With optional non-nil ALL, force redisplay of all mode-lines.
 ;;; @@ 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)))
index fe741f3..28fe92d 100644 (file)
--- a/emu-19.el
+++ b/emu-19.el
@@ -6,7 +6,7 @@
 ;;;
 ;;; 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))
index a184284..f60d3e3 100644 (file)
@@ -6,7 +6,7 @@
 ;;;
 ;;; 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).
@@ -27,6 +27,7 @@
 ;;;
 ;;; Code:
 
+(require 'cyrillic)
 (require 'emu-xemacs)
 
 (defvar xemacs-beta-version
@@ -90,7 +91,7 @@ in the region between START and END.
 (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)))
index f71e462..0fe3b06 100644 (file)
@@ -6,7 +6,7 @@
 ;;;
 ;;; 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)
diff --git a/emu.el b/emu.el
index 8d5cebd..83b205d 100644 (file)
--- a/emu.el
+++ b/emu.el
@@ -7,7 +7,7 @@
 ;;; 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))