Missing argument for a warning

This commit is contained in:
Juan Jose Garcia Ripoll 2010-01-25 20:50:31 +01:00
parent 65c1dbb06f
commit a2b6887e83

View file

@ -647,7 +647,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))))