Index: slime/ChangeLog diff -u slime/ChangeLog:1.1213 slime/ChangeLog:1.1214 --- slime/ChangeLog:1.1213 Mon Sep 10 17:45:17 2007 +++ slime/ChangeLog Tue Sep 11 15:31:45 2007 @@ -1,3 +1,13 @@ +2007-09-11 Tobias C. Rittweiler tcr@freebits.de + + * swank-loader.lisp: Aways compile-file `contrib/swank-asdf.lisp' + on SBCL. This fixes "Undefined function" style-warnings when using + `slime-asdf' in combination with SBCL. Reported by Cyrus Harmon. + + * swank-sbcl.lisp: Explicitly require ASDF. (While this is not + strictly necessary, as it's implicitly loaded on requiring the + other modules, I think it's better to be explicit about it.) + 2007-09-10 Helmut Eller heller@common-lisp.net
Fix some bugs introduced while moving doc refs to contrib. Index: slime/contrib/ChangeLog diff -u slime/contrib/ChangeLog:1.43 slime/contrib/ChangeLog:1.47 --- slime/contrib/ChangeLog:1.43 Mon Sep 10 17:44:48 2007 +++ slime/contrib/ChangeLog Tue Sep 11 13:11:08 2007 @@ -1,3 +1,30 @@ +2007-09-11 Tobias C. Rittweiler tcr@freebits.de + + * slime-editing-commands.el: Automatically bind the editing + commands when this module is required. (Previously, one had to + enable them explicitly, but this is inconsistent to, for instance, + the `slime-c-p-c' module which also sets up its bindings + automatically.) + (slime-bind-editing-commands): Renamed to `slime-editing-commands-init'. + (slime-editing-commands-init): Evaluated at toplevel. + +2007-09-11 Tobias C. Rittweiler tcr@freebits.de + + * slime-parse.el (slime-enclosing-form-specs): Now also works even + when point is inside a string. + (slime-inside-string-p): New function. + (slime-beginning-of-string): New function. + +2007-09-11 Tobias C. Rittweiler tcr@freebits.de + + * swank-arglist.lisp (read-conversatively-for-autodoc): Also parse + quoted symbols explicitly. This fixed extended arglist display for + `(make-instance 'foo'. Reported by: Johannes Groedem. + +2007-09-11 Tobias C. Rittweiler tcr@freebits.de + + * slime-fancy.el: Require `slime-references'. + 2007-09-10 Helmut Eller heller@common-lisp.net
* slime-parse.el (slime-cl-symbol-name, slime-cl-symbol-package): @@ -37,7 +64,7 @@ window-configuration, and explicitly set the hook. (slime-fuzzy-done): Explicitely remove the hook.
-2007-09-10 Tobias C. Rittweiler tcr@freebits.de +2007-09-10 Tobias C. Rittweiler tcr@freebits.de
* slime-parse.el (slime-cl-symbol-name, slime-cl-symbol-package): Moved back into slime.el. @@ -53,7 +80,7 @@ ecase, for dispatching targets. Should fix XEmacs compatibility. Reported by Steven E. Harris.
-2007-09-05 Tobias C. Rittweiler tcr@freebits.de +2007-09-05 Tobias C. Rittweiler tcr@freebits.de
* swank-c-p-c.el: This file incorrectly provided the module `:swank-compound-prefix'; changed that to `:swank-c-p-c'. @@ -65,12 +92,12 @@ `*arglist-pprint-bindings*' to be special, as the variable is defined later in the file. (Gets rid of warnings during loading.)
-2007-09-05 Tobias C. Rittweiler tcr@freebits.de +2007-09-05 Tobias C. Rittweiler tcr@freebits.de
* slime-c-p-c.el (slime-c-p-c-init): Bind `slime-complete-form' to `C-c C-s' in `slime-repl-mode-map'. -2007-09-05 Tobias C. Rittweiler tcr@freebits.de +2007-09-05 Tobias C. Rittweiler tcr@freebits.de
Added extended arglist display for DECLAIM and PROCLAIM.