[slime-cvs] CVS slime
mkoeppe
mkoeppe at common-lisp.net
Sat Aug 25 04:57:04 UTC 2007
Update of /project/slime/cvsroot/slime
In directory clnet:/tmp/cvs-serv27072
Modified Files:
slime.el
Log Message:
(slime-insert-arglist): Removed, superseded by
slime-complete-form since 2005-02-20.
--- /project/slime/cvsroot/slime/slime.el 2007/08/25 00:37:26 1.812
+++ /project/slime/cvsroot/slime/slime.el 2007/08/25 04:57:04 1.813
@@ -5679,22 +5679,6 @@
(message "%s" (slime-fontify-string arglist))
(error "Arglist not available")))))
-(defun slime-insert-arglist (name)
- "Insert the argument list for NAME behind the symbol point is
-currently looking at."
- (interactive (list (slime-read-symbol-name "Arglist of: ")))
- (let ((arglist (slime-eval `(swank:arglist-for-insertion ',name))))
- (cond ((eq arglist :not-available)
- (error "Arglist not available"))
- ((string-match "^(" arglist)
- (insert " ")
- (save-excursion
- (insert (substring arglist 1))))
- (t
- (save-excursion
- (insert arglist))))))
-
-
(defun slime-incomplete-form-at-point ()
"Looks for a ``raw form spec'' around point to be processed by
SWANK::PARSE-FORM-SPEC. It is similiar to
More information about the slime-cvs
mailing list