CMUCL commit: intl-branch src/compiler (main.lisp)

Raymond Toy rtoy at common-lisp.net
Fri Mar 19 03:22:30 CET 2010


    Date: Thursday, March 18, 2010 @ 22:22:30
  Author: rtoy
    Path: /project/cmucl/cvsroot/src/compiler
     Tag: intl-branch

Modified: main.lisp

Clarify docstring for COMPILE.


-----------+
 main.lisp |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)


Index: src/compiler/main.lisp
diff -u src/compiler/main.lisp:1.148.2.8 src/compiler/main.lisp:1.148.2.9
--- src/compiler/main.lisp:1.148.2.8	Thu Mar 18 18:17:16 2010
+++ src/compiler/main.lisp	Thu Mar 18 22:22:29 2010
@@ -5,7 +5,7 @@
 ;;; Carnegie Mellon University, and has been placed in the public domain.
 ;;;
 (ext:file-comment
-  "$Header: /project/cmucl/cvsroot/src/compiler/main.lisp,v 1.148.2.8 2010-03-18 22:17:16 rtoy Exp $")
+  "$Header: /project/cmucl/cvsroot/src/compiler/main.lisp,v 1.148.2.9 2010-03-19 02:22:29 rtoy Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -1937,8 +1937,8 @@
 (defun compile (name &optional (definition (or (macro-function name)
 					       (fdefinition name))))
   _N"Compiles the function (or macro-function) whose name is NAME.  If
-  DEFINITION is supplied, it should be a lambda expression that is
-  compiled.  IF NAME names a macro, then the compiled expression
+  DEFINITION is supplied, it should be a lambda expression which will
+  be compiled.  IF NAME names a macro, then the compiled expression
   replaces the existing macro-function.  If NAME names a function, the
   compiled expression is placed in the function cell of NAME.  If NAME
   is Nil, the compiled code object is returned."



More information about the cmucl-commit mailing list