Index: slime/ChangeLog diff -u slime/ChangeLog:1.2053 slime/ChangeLog:1.2057 --- slime/ChangeLog:1.2053 Sun Apr 4 17:51:54 2010 +++ slime/ChangeLog Mon Apr 5 23:05:25 2010 @@ -1,3 +1,20 @@ +2010-04-06 Stas Boukarev stassats@gmail.com + + * slime.el (slime-create-compilation-log): Enable + compilation-mode, which was enabled previously by + slime-insert-compilation-log. + +2010-04-05 Stas Boukarev stassats@gmail.com + + * slime.el (slime-doc-bindings): Move slime-apropos to C-c C-d A, + C-c C-d a will be bound to slime-autodoc-manually. + + * doc/slime.texi: Document the above change. + +2010-04-05 Stas Boukarev stassats@gmail.com + + * slime.el: Some further adaptations to the new slime-with-popup-buffer. + 2010-04-04 Stas Boukarev stassats@gmail.com
* slime.el (slime-insert-threads): Use header-line-format only when Index: slime/contrib/ChangeLog diff -u slime/contrib/ChangeLog:1.364 slime/contrib/ChangeLog:1.369 --- slime/contrib/ChangeLog:1.364 Sat Apr 3 13:00:04 2010 +++ slime/contrib/ChangeLog Mon Apr 5 22:40:09 2010 @@ -1,3 +1,44 @@ +2010-04-06 Stas Boukarev stassats@gmail.com + + * slime-sprof.el (slime-sprof-format): Remove references to the + removed code. + +2010-04-05 Stas Boukarev stassats@gmail.com + + * slime-repl.el (slime-repl-inside-string-or-comment-p): New + function, when in the REPL prompt, narrow the search to the + prompt, otherwise stray " from the previous prompts + or outputs may confuse slime-inside-string-or-comment-p. + + * slime-autodoc.el (slime-autodoc): Use + slime-repl-inside-string-or-comment-p when fbound. + +2010-04-05 Stas Boukarev stassats@gmail.com + + * slime-autodoc.el (slime-autodoc-manually): Rename from + slime-autodoc-full. + Like slime-autodoc, but when called twice, + or after slime-autodoc was already automatically called, + display multiline arglist. + +2010-04-05 Stas Boukarev stassats@gmail.com + + * slime-autodoc.el (slime-autodoc-full): New command, + displays multiline arglists. Bound to C-c C-d a. + (slime-make-autodoc-rpc-form): Don't send + :print-lines to autodoc, always use the actual width for + :print-right-margin, remove newlines on formatting when needed. + (slime-autodoc): Add optional parameter multilinep defaulted to + slime-autodoc-use-multiline-p, pass it to slime-format-autodoc. + + * swank-arglists.lisp (autodoc, decoded-arglist-to-string): remove + print-lines parameter, it's not used anymore. + +2010-04-05 Stas Boukarev stassats@gmail.com + + * slime-sprof.el (slime-sprof-browser): Use slime-with-popup-buffer for + buffer creation. + 2010-04-03 Stas Boukarev stassats@gmail.com
* swank-arglists.lisp (print-decoded-arglist): prin1-arg -> print-arg.