[slime-cvs] CVS update: slime/swank-backend.lisp

Luke Gorrie lgorrie at common-lisp.net
Sun May 16 23:35:12 UTC 2004


Update of /project/slime/cvsroot/slime
In directory common-lisp.net:/tmp/cvs-serv20352

Modified Files:
	swank-backend.lisp 
Log Message:
Trivial doc additions.

Date: Sun May 16 19:35:12 2004
Author: lgorrie

Index: slime/swank-backend.lisp
diff -u slime/swank-backend.lisp:1.46 slime/swank-backend.lisp:1.47
--- slime/swank-backend.lisp:1.46	Tue May  4 14:57:52 2004
+++ slime/swank-backend.lisp	Sun May 16 19:35:11 2004
@@ -166,14 +166,15 @@
 ;;;; Compilation
 
 (definterface call-with-compilation-hooks (func)
-   "Call FUNC with hooks to trigger SLDB on compiler errors.")
+  "Call FUNC with hooks to record compiler conditions.")
 
 (defmacro with-compilation-hooks ((&rest ignore) &body body)
+  "Execute BODY as in CALL-WITH-COMPILATION-HOOKS."
   (declare (ignore ignore))
   `(call-with-compilation-hooks (lambda () (progn , at body))))
 
 (definterface swank-compile-string (string &key buffer position)
-   "Compile source from STRING.  During compilation, compiler
+  "Compile source from STRING.  During compilation, compiler
 conditions must be trapped and resignalled as COMPILER-CONDITIONs.
 
 If supplied, BUFFER and POSITION specify the source location in Emacs.





More information about the slime-cvs mailing list