From 14a5cc591c5e22277c1cff4e9395cab5d2d58f8d Mon Sep 17 00:00:00 2001 From: Christophe Rhodes Date: Sat, 18 Oct 2003 12:55:41 +0000 Subject: [PATCH] 0.8.4.31: Minor PCL fixette ... when defining early generic functions in the bootstrap process, clobber the lambda list if the gf has already been created (e.g. NO-APPLICABLE-METHOD) by an early DEFMETHOD. --- src/pcl/boot.lisp | 2 ++ version.lisp-expr | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/pcl/boot.lisp b/src/pcl/boot.lisp index 4cfe1fc..53bc73e 100644 --- a/src/pcl/boot.lisp +++ b/src/pcl/boot.lisp @@ -1808,6 +1808,8 @@ bootstrapping. &allow-other-keys) (declare (ignore keys)) (cond ((and existing (early-gf-p existing)) + (when lambda-list-p + (set-arg-info existing :lambda-list lambda-list)) existing) ((assoc spec *!generic-function-fixups* :test #'equal) (if existing diff --git a/version.lisp-expr b/version.lisp-expr index 52f066e..87fb53d 100644 --- a/version.lisp-expr +++ b/version.lisp-expr @@ -17,4 +17,4 @@ ;;; checkins which aren't released. (And occasionally for internal ;;; versions, especially for internal versions off the main CVS ;;; branch, it gets hairier, e.g. "0.pre7.14.flaky4.13".) -"0.8.4.30" +"0.8.4.31" -- 1.7.10.4