[slime-cvs] CVS slime
CVS User heller
heller at common-lisp.net
Wed Dec 7 19:23:45 UTC 2011
Update of /project/slime/cvsroot/slime
In directory tiger.common-lisp.net:/tmp/cvs-serv1371
Modified Files:
ChangeLog slime.el
Log Message:
* slime.el ([xemacs]): Use (find-coding-system 'utf-8-unix)
instead of checking the XEmacs version to decide when 'un-define
is required.
--- /project/slime/cvsroot/slime/ChangeLog 2011/12/07 18:27:17 1.2277
+++ /project/slime/cvsroot/slime/ChangeLog 2011/12/07 19:23:44 1.2278
@@ -1,5 +1,11 @@
2011-12-07 Helmut Eller <heller at common-lisp.net>
+ * slime.el ([xemacs]): Use (find-coding-system 'utf-8-unix)
+ instead of checking the XEmacs version to decide when 'un-define
+ is required.
+
+2011-12-07 Helmut Eller <heller at common-lisp.net>
+
* swank.lisp (send-to-emacs): Add a without-slime-interrupts to
protect send/receive from arbitrary interrupts.
--- /project/slime/cvsroot/slime/slime.el 2011/12/07 18:02:31 1.1388
+++ /project/slime/cvsroot/slime/slime.el 2011/12/07 19:23:44 1.1389
@@ -68,9 +68,7 @@
(require 'font-lock)
(when (featurep 'xemacs)
(require 'overlay)
- (when (or (< emacs-major-version 21)
- (and (= emacs-major-version 21)
- (< emacs-minor-version 5)))
+ (unless (find-coding-system 'utf-8-unix)
(require 'un-define)))
(require 'easymenu)
(eval-when (compile)
More information about the slime-cvs
mailing list