The cause seems to be that the site startup files do (require 'completer) which fiddles with completion in GNU Emacs 23. But that doesn't fiddle with it in GNU Emacs 21/22. I'm tempted to do an atrociously ugly workaround: guard the above to disable it on GNU Emacs 23+. -- Barak A. Pearlmutter Hamilton Institute & Dept Comp Sci, NUI Maynooth, Co. Kildare, Ireland http://www.bcl.hamilton.ie/~barak/
---------------------------------------------------------------- $ git diff -U0 HEAD~2..HEAD~1 diff --git a/debian/ilisp.el b/debian/ilisp.el index 67cddfc..c4b4cba 100644 --- a/debian/ilisp.el +++ b/debian/ilisp.el @@ -7 +7,3 @@ -(require 'completer) +(when (and (boundp 'emacs-major-version) + (< emacs-major-version 23)) + (require 'completer)) -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org