Index: slime/ChangeLog diff -u slime/ChangeLog:1.1192 slime/ChangeLog:1.1201 --- slime/ChangeLog:1.1192 Fri Aug 31 09:11:03 2007 +++ slime/ChangeLog Tue Sep 4 11:45:19 2007 @@ -1,3 +1,75 @@ +2007-09-04 Mark Evenson mark.evenson@gmx.at + + * swank-abcl.lisp: Call accessors of compiler-condition at load + time to work around some ABCL problems. + +2007-09-04 Helmut Eller heller@common-lisp.net + + Move asdf support to contrib. + + * swank-backend.lisp (operate-on-system): Moved to + swank-asdf.lisp. It wasn't specialized in any backend. + + * swank.lisp (operate-on-system-for-emacs) + (list-all-systems-known-to-asdf, list-asdf-systems): Moved to + swank-asdf.lisp. + + * slime.el: Move asdf commands to contrib slime-adsf.el. + + * swank-loader.lisp: Load swank-asdf if ASDF is in + *FEATURES*. Also add the contrib source directory to + swank::*load-path*. + +2007-09-04 Helmut Eller heller@common-lisp.net + + * slime.el: Move tramp support to contrib. + +2007-09-04 Helmut Eller heller@common-lisp.net + + Move startup animation to contrib. + + * slime.el (slime-repl-banner-function): New hook. + (slime-repl-update-banner): Use it and reset markers after calling + it. + (slime-set-default-directory): Don't call slime-repl-update-banner + here. + (slime-repl-insert-prompt): Set slime-repl-input-end-mark to + point-max. + +2007-09-04 Helmut Eller heller@common-lisp.net + + * slime.el: Move inferior-slime-mode to contrib. + +2007-09-04 Helmut Eller heller@common-lisp.net + + * slime.el: Fix the test suite (except for SBCL). + +2007-09-04 Helmut Eller heller@common-lisp.net + + Simplify slime-process-available-input. + + * slime.el (slime-process-available-input): We are called in a + process filter, i.e. at arbitrary times and in an aribtrary + buffer. So it doesn't make sense to save-and-restore the current + buffer here + (slime-eval-async): Instead, save and restore the buffer here. + (slime-net-read-or-lose): New. + +2007-09-04 Helmut Eller heller@common-lisp.net + + Remove request-abort condition. + + * swank-backend.lisp (request-abort): Removed + (abort-request): Removed. Replace all (3) uses with ERROR. + * swank.lisp (eval-for-emacs): No special case for request-abort. + * slime.el (slime-eval-async): Remove optional arg of :abort. + +2007-09-04 Helmut Eller heller@common-lisp.net + + Rename slime-insert-possibly-as-rectangle to slime-insert-indented. + + * slime.el (slime-insert-indented): Renamed. Update callers. + 2007-08-31 Helmut Eller heller@common-lisp.net
Move compound prefix completion and autodoc to contrib. Index: slime/contrib/ChangeLog diff -u slime/contrib/ChangeLog:1.26 slime/contrib/ChangeLog:1.32 --- slime/contrib/ChangeLog:1.26 Sat Sep 1 12:58:05 2007 +++ slime/contrib/ChangeLog Tue Sep 4 11:45:20 2007 @@ -1,3 +1,35 @@ +2007-09-04 Helmut Eller heller@common-lisp.net + + * swank-arglists.lisp (parse-first-valid-form-spec): Rewrite it for + ABCL. + +2007-09-04 Helmut Eller heller@common-lisp.net + + Some bug fixes for slime-complete-symbol*. + Patches by Mr. Madhu enometh@meer.net + + * slime-c-p-c.el (slime-c-p-c-unambiguous-prefix-p): New variable. + (slime-expand-abbreviations-and-complete): Use it. Also add a + workaround for XEmacs issues. + +2007-09-04 Helmut Eller heller@common-lisp.net + + Move asdf support to contrib: + + * slime-asdf.el: New file. + + * swank-asdf.lisp: New file + (operate-on-system, asdf-central-registry) + (list-all-systems-known-to-asdf): Use the asdf package in the + source code, i.e. write asdf:operate instead of + (find-symbol "OPERATE" "ASDF"). + +2007-09-04 Helmut Eller heller@common-lisp.net + + * slime-tramp.el: New file. + * slime-banner.el: New file. + * inferior-slime.el: New file. + 2007-09-01 Matthias Koeppe mkoeppe@mail.math.uni-magdeburg.de
* slime-fancy.el: New meta-contrib.