Index: slime/ChangeLog diff -u slime/ChangeLog:1.1128 slime/ChangeLog:1.1133 --- slime/ChangeLog:1.1128 Wed May 16 15:27:58 2007 +++ slime/ChangeLog Thu May 17 12:52:31 2007 @@ -1,3 +1,39 @@ +2007-05-17 Martin Simmons martin@lispworks.com + + * swank-lispworks.lisp (lispworks-inspect): Fix hanging caused by + mapcan, i.e. nconc, on a constant list returned by + label-value-line. + +2007-05-17 Tobias C. Rittweiler tcr@freebits.de + + * slime.el (slime-complete-form): Only insert a closing + parenthesis if the form is not already closed. Reported by and + adapted from Mac Chan. + +2007-05-17 Tobias C. Rittweiler tcr@freebits.de + + * swank.lisp: Fixed bug in completion as previously "swank:[tab]" + would correctly list all the symbols in SWANK, but would + simultaneously append a spooky dash to the original + string ("swank:-"). + + (completions): Strip off the package identifier part, and only + compute the longest compound prefix for the actual symbol + identifiers. + (untokenize-symbol): New function. Inverse of TOKENIZE-SYMBOL. + (format-completion-result): Use UNTOKENIZE-SYMBOL. + +2007-05-17 Dustin Long dlong@stevens.edu + + * swank-ecl.lisp (compile-from-stream): Fixed typo that prevented + `slime-compile-defun' from actually compiling a function. + +2007-05-17 Tobias C. Rittweiler tcr@freebits.de + + * swank-loader.lisp (*sysdep-files*): Load the auxiliary files + swank-source-*.lisp before swank-sbcl.lisp to avoid + undefined-function style warnings. + 2007-05-16 Takehiko Abe keke@gol.com
* swank.lisp (inspect-for-emacs file-stream, stream-error): Fixed