Emacs-Lisp interface with Emacs 22
Tiago Maduro-Dias <[email protected]> Wed, 4 May 2005 01:19:20 +0100
| Newsgroups | gmane.lisp.allegro |
|---|---|
| Message-ID | <[email protected]> |
Hi!
Just out of curiosity; the Emacs-Lisp interface that ships with
Allegro CL 7.0 seems to work fine (composer included) with the new
Emacs 22.
In order to get it to work one just needs to add the following line
to the fi-site-init.el file (which must be compiled afterwards or
else the original will be loaded).
***************
*** 21,26 ****
--- 21,27 ----
(t 'xemacs19)))
((string-match "^20\\." emacs-version) 'emacs20)
((string-match "^21\\." emacs-version) 'emacs20)
+ ((string-match "^22\\." emacs-version) 'emacs20)
((string-match "^19\\." emacs-version) 'emacs19)
((string-match "^18\\." emacs-version) 'emacs18)
((boundp 'epoch::version) 'epoch)
Diff finished. Wed May 4 01:10:33 2005
This is obviously completely unsupported. I'm just posting this as a
curiosity, hoping someone will find this information useful.
Thank you for your time,
Tiago Maduro-Dias.