Index: slime/ChangeLog diff -u slime/ChangeLog:1.1040 slime/ChangeLog:1.1046 --- slime/ChangeLog:1.1040 Wed Jan 10 18:55:04 2007 +++ slime/ChangeLog Thu Jan 11 19:06:56 2007 @@ -1,3 +1,42 @@ +2007-01-12 Edi Weitz edi@agharta.de + + * slime.el (slime-find-asd): Remove file extension. + + (slime-read-system-name): Use SWANK:LIST-ASDF-SYSTEMS. + + * swank.lisp (list-all-systems-in-central-registry): Use only + pathname name. + + (list-all-systems-known-to-asdf): New function. + + (list-asdf-systems): New function. + +2007-01-12 Marco Baringer mb@bese.it + + * slime.el (slime-keys): Remove binding of M-*, restore binding of + M-,. + +2007-01-11 Edi Weitz edi@agharta.de + + * slime.el (slime-repl-test-system, slime-repl-test/force-system): + New REPL shortcuts. Patch by Kevin Rosenberg + kevin@rosenberg.net. + +2007-01-11 Juho Snellman jsnell@iki.fi + + * slime.el (slime-read-expression-map): restore tab completion in + the minibuffer. Switch the slime-mode-map and minibuffer-local-map + around, so that the minibuffer binding for return takes precedence + over the slime-mode one. + +2007-01-11 Marco Baringer mb@bese.it + + * swank.lisp (inspect-for-emacs integer): Don't die if the integer + can't be expressed as a float. Patch by Ariel Badichi + abadichi@bezeqint.net. + + * slime.el (slime-keys): Removed binding of M-, + 2007-01-11 Helmut Eller heller@common-lisp.net
* slime.el: Some cleanups for the debugger code: add some outline @@ -50,6 +89,18 @@ * slime.el (slime-repl-merge-histories): Use (setf (gethash ...) instead of puthash, for Emacs 20.
+2007-01-09 Juho Snellman jsnell@iki.fi + + SBCL 1.0.1.15 supports restart-frame natively, and uses a different + debug catch tag interface than earlier versions. + + * swank-sbcl (sbcl-with-restart-frame): New function, detects SBCL + 1.0.1.15 or later. + (return-from-frame): Another version for 1.0.1.15, using + sb-debug:unwind-to-frame-and-call + (restart-frame): Another version for 1.0.1.15, using + sb-debug:unwind-to-frame-and-call + 2007-01-07 Helmut Eller heller@common-lisp.net
* swank.lisp (open-streams): Don't pass nil to make-fn-streams;