[slime-cvs] CVS slime/contrib
trittweiler
trittweiler at common-lisp.net
Fri Aug 31 22:16:11 UTC 2007
Update of /project/slime/cvsroot/slime/contrib
In directory clnet:/tmp/cvs-serv27382/contrib
Modified Files:
slime-c-p-c.el
Log Message:
Added extended arglist display for EVAL-WHEN, viz:
(eval-when (:compile-toplevel :load-toplevel :execute) &body body)
Notice that completion works as expected on these keywords.
* swank-arglist (arglist-dispatch): New method for EVAL-WHEN.
(print-arglist): Print keywords with PRIN1 rather than PRINC,
to get a result as shown above for the EVAL-WHEN case.
(completions-for-keyword): Add support for &ANY args.
--- /project/slime/cvsroot/slime/contrib/slime-c-p-c.el 2007/08/31 14:07:54 1.3
+++ /project/slime/cvsroot/slime/contrib/slime-c-p-c.el 2007/08/31 22:16:11 1.4
@@ -122,8 +122,8 @@
(defun slime-completions-for-keyword (operator-designator prefix
arg-indices)
(slime-eval `(swank:completions-for-keyword ',operator-designator
- ,prefix
- ',arg-indices)))
+ ,prefix
+ ',arg-indices)))
(defun slime-completions-for-character (prefix)
(slime-eval `(swank:completions-for-character ,prefix)))
More information about the slime-cvs
mailing list