X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fpcl%2Fmethods.lisp;h=30ceedd0866c9aa967f953599f1ef9f909872386;hb=f2db6743b1fadeea9e72cb583d857851c87efcd4;hp=4bc4f1ea0444c5701d09f9048baa8fc905246d60;hpb=c47a1dd98bc2d0be7910782c46cf29349ce973c1;p=sbcl.git diff --git a/src/pcl/methods.lisp b/src/pcl/methods.lisp index 4bc4f1e..30ceedd 100644 --- a/src/pcl/methods.lisp +++ b/src/pcl/methods.lisp @@ -370,7 +370,7 @@ (defmethod generic-function-argument-precedence-order ((gf standard-generic-function)) - (aver (eq *boot-state* 'complete)) + (aver (eq **boot-state** 'complete)) (loop with arg-info = (gf-arg-info gf) with lambda-list = (arg-info-lambda-list arg-info) for argument-position in (arg-info-precedence arg-info) @@ -795,7 +795,7 @@ (defvar *std-cam-methods* nil) (defun compute-applicable-methods-emf (generic-function) - (if (eq *boot-state* 'complete) + (if (eq **boot-state** 'complete) (let* ((cam (gdefinition 'compute-applicable-methods)) (cam-methods (compute-applicable-methods-using-types cam (list `(eql ,generic-function) t))))