[slime-cvs] CVS slime/contrib

heller heller at common-lisp.net
Tue Sep 4 09:49:10 UTC 2007


Update of /project/slime/cvsroot/slime/contrib
In directory clnet:/tmp/cvs-serv20778/contrib

Modified Files:
	swank-arglists.lisp swank-presentations.lisp 
Log Message:
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.



--- /project/slime/cvsroot/slime/contrib/swank-arglists.lisp	2007/09/01 05:39:11	1.5
+++ /project/slime/cvsroot/slime/contrib/swank-arglists.lisp	2007/09/04 09:49:10	1.6
@@ -436,7 +436,7 @@
                            (car arg)
                            (cadr arg)))
         (t
-         (abort-request "Bad keyword item of formal argument list"))))
+         (error "Bad keyword item of formal argument list"))))
 
 (defun encode-keyword-arg (arg)
   (cond
--- /project/slime/cvsroot/slime/contrib/swank-presentations.lisp	2007/08/29 04:50:34	1.3
+++ /project/slime/cvsroot/slime/contrib/swank-presentations.lisp	2007/09/04 09:49:10	1.4
@@ -85,7 +85,7 @@
   "Get the result of the previous REPL evaluation with ID."
   (multiple-value-bind (object foundp) (lookup-presented-object id)
     (cond (foundp object)
-          (t (abort-request "Attempt to access unrecorded object (id ~D)." id)))))
+          (t (error "Attempt to access unrecorded object (id ~D)." id)))))
 
 (defslimefun clear-repl-results ()
   "Forget the results of all previous REPL evaluations."




More information about the slime-cvs mailing list