Missing arguments to several warnings (S. Bourakev).
authorJuan Jose Garcia Ripoll <jjgarcia@jjgr-2.local>
Mon, 25 Jan 2010 08:09:10 +0000 (09:09 +0100)
committerJuan Jose Garcia Ripoll <jjgarcia@jjgr-2.local>
Mon, 25 Jan 2010 08:09:10 +0000 (09:09 +0100)
contrib/bytecmp/bytecmp.lsp
src/cmp/cmpmain.lsp

index ba94d11..87aa581 100644 (file)
@@ -32,7 +32,8 @@
        (warn "COMPILE can not compile generic functions yet")
        (return-from compile (values def t nil)))
        ((null (setq form (function-lambda-expression def)))
-       (warn "We have lost the original function definition for ~s. Compilation failed")
+       (warn "We have lost the original function definition for ~s. Compilation failed"
+              name)
        (return-from compile (values def t nil)))
        (t
        (setq form `(setf (symbol-function ',name) #',form))))
index c7b6f3a..83888ba 100755 (executable)
@@ -758,7 +758,8 @@ after compilation."
         (warn "COMPILE can not compile generic functions yet")
         (return-from compile (values def t nil)))
        ((null (setq form (function-lambda-expression def)))
-        (warn "We have lost the original function definition for ~s. Compilation to C failed")
+        (warn "We have lost the original function definition for ~s. Compilation to C failed"
+               name)
         (return-from compile (values def t nil)))
        (t
         (setq form `(setf (symbol-function ',name) #',form))))