From: morioka Date: Wed, 11 Mar 1998 13:12:38 +0000 (+0000) Subject: APEL 4.2. X-Git-Tag: apel-4_2~1 X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=e7124bbcd6dce24c6dca34ac3af125aef159325e;p=elisp%2Fapel.git APEL 4.2. --- diff --git a/ChangeLog b/ChangeLog index a853462..6a8d9bb 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,19 @@ +1997-11-05 MORIOKA Tomohiko + + * APEL: Version 4.2 was released. + +1997-11-05 MORIOKA Tomohiko + + * APEL-MK (config-apel): Regard LISPDIR. + +1997-11-05 MORIOKA Tomohiko + + * emu-19.el (tl:make-overlay): New obsolete function (for + tm-7.106). + (tl:overlay-put): New obsolete function (for tm-7.106). + (tl:overlay-buffer): New obsolete function (for tm-7.106). + + 1997-11-04 MORIOKA Tomohiko * APEL: Version 4.1 was released. diff --git a/Makefile b/Makefile index dd5fabd..128a1a7 100644 --- a/Makefile +++ b/Makefile @@ -1,8 +1,8 @@ # -# $Id: Makefile,v 0.14 1997/11/04 09:06:02 morioka Exp $ +# $Id: Makefile,v 0.15 1997/11/05 15:33:29 morioka Exp $ # -VERSION = 4.1 +VERSION = 4.2 TAR = tar RM = /bin/rm -f @@ -11,7 +11,8 @@ CP = /bin/cp -p EMACS = emacs FLAGS = -batch -q -no-site-file -l APEL-MK -PREFIX = +PREFIX = NONE +LISPDIR = NONE EMU_FILES = EMU-ELS *.el @@ -22,7 +23,7 @@ elc: $(EMACS) $(FLAGS) -f compile-apel install: - $(EMACS) $(FLAGS) -f install-apel $(PREFIX) + $(EMACS) $(FLAGS) -f install-apel $(PREFIX) $(LISPDIR) clean: diff --git a/emu-19.el b/emu-19.el index ba82004..6487d48 100644 --- a/emu-19.el +++ b/emu-19.el @@ -3,7 +3,7 @@ ;; Copyright (C) 1995,1996,1997 Free Software Foundation, Inc. ;; Author: MORIOKA Tomohiko -;; Version: $Id: emu-19.el,v 7.16 1997/04/05 06:46:09 morioka Exp $ +;; Version: $Id: emu-19.el,v 7.17 1997/11/05 15:10:44 morioka Exp $ ;; Keywords: emulation, compatibility ;; This file is part of emu. @@ -33,6 +33,14 @@ ) +;;; @ for tm-7.106 +;;; + +(make-obsolete 'tl:make-overlay 'make-overlay) +(make-obsolete 'tl:overlay-put 'overlay-put) +(make-obsolete 'tl:overlay-buffer 'overlay-buffer) + + ;;; @ visible/invisible ;;; diff --git a/file-detect.el b/file-detect.el index ad6dbe9..577906a 100644 --- a/file-detect.el +++ b/file-detect.el @@ -3,7 +3,7 @@ ;; Copyright (C) 1996,1997 Free Software Foundation, Inc. ;; Author: MORIOKA Tomohiko -;; Version: $Id: file-detect.el,v 4.1 1997/11/04 09:02:49 morioka Exp $ +;; Version: $Id: file-detect.el,v 4.2 1997/11/05 15:30:39 morioka Exp $ ;; Keywords: file detection, install, module ;; This file is part of APEL (A Portable Emacs Library). @@ -25,7 +25,10 @@ ;;; Code: -(defvar default-load-path load-path) +(defvar default-load-path load-path + "*Base of `load-path'. +It is used as default value of target path to search file or +subdirectory under load-path.") ;;;###autoload (defun add-path (path &rest options)