[S apel] Suppress alist for XEmacs 21.5 and beyond.
"Stephen J. Turnbull" <[email protected]> Tue, 07 Jul 2015 16:15:23 +0900
| Newsgroups | gmane.emacs.xemacs.patches |
|---|---|
| Message-ID | <[email protected]> |
--=-=-= Content-Type: text/plain; charset=utf-8 SUPERSEDES Steve Youngs writes: > Hasn't alist.el been in core in 21.5 for like forever? > > Here's a quick patch so the apel version is suppressed. Actually, alist.el has been in core since 21.0 (Dec. 1997), and AFAICT there's no functionality in the APEL version that isn't in core. So here's an alternative which just removes apel/alist.el from the distributed package. I haven't done a package patch in a while (my Local.rules was dated 2012-04-10!), so review and testing would be appreciated. --=-=-= Content-Type: text/x-diff; charset=utf-8 Content-Disposition: inline; filename=apel-makefile.diff Content-Description: apel/alist.el gets it right between the eyes. diff -r 76c1a89a4a08 ChangeLog --- a/ChangeLog Thu May 15 20:55:03 2014 +0200 +++ b/ChangeLog Tue Jul 07 15:44:13 2015 +0900 @@ -1,3 +1,8 @@ +2015-07-07 Stephen J. Turnbull <[email protected]> + + * Makefile (ELCS): + Remove alist.elc, it's been in core since 21.0 (1998). + 2014-05-15 Norbert Koch <[email protected]> * Makefile (VERSION): XEmacs package 1.36 released. diff -r 76c1a89a4a08 Makefile --- a/Makefile Thu May 15 20:55:03 2014 +0200 +++ b/Makefile Tue Jul 07 15:44:13 2015 +0900 @@ -27,7 +27,9 @@ include ../../Local.rules.inc -ELCS = alist.elc apel-ver.elc broken.elc calist.elc emu.elc filename.elc \ +## Up to VERSION=1.36 included alist.el, which duplicates core alist.el +## since 21.0. The core code is more efficient. +ELCS = apel-ver.elc broken.elc calist.elc emu.elc filename.elc \ install.elc inv-xemacs.elc invisible.elc mcharset.elc \ mule-caesar.elc path-util.elc pccl.elc pces-20.elc pces-xfc.elc \ pces.elc pcustom.elc poe-xemacs.elc poe.elc poem.elc product.elc \ --=-=-= Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ XEmacs-Patches mailing list [email protected] http://lists.xemacs.org/mailman/listinfo/xemacs-patches --=-=-=--