Forgot the case in which the generic function is modified using ENSURE-GENERIC-FUNCTION

This commit is contained in:
jjgarcia 2005-12-20 15:03:02 +00:00
parent 63463381e7
commit 5722fa2b7c

View file

@ -235,7 +235,7 @@
(apply #'ensure-generic-function-using-class gfun name args)))
;; a generic function already exists
((si::instancep (or gfun (setf gfun (fdefinition name))))
gfun)
(apply #'reinitialize-instance gfun args))
((special-operator-p name)
(simple-program-error "The special operator ~A is not a valid name for a generic function" name))
((macro-function name)