From ef8c599d871ebaf292af6d506d98877ced4400dc Mon Sep 17 00:00:00 2001 From: ram <ram> Date: Mon, 25 Oct 1993 14:13:08 +0000 Subject: [PATCH] Fix arg order to GETF... --- code/error.lisp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/error.lisp b/code/error.lisp index bebbfa994..44d093ec2 100644 --- a/code/error.lisp +++ b/code/error.lisp @@ -7,7 +7,7 @@ ;;; Scott Fahlman or slisp-group@cs.cmu.edu. ;;; (ext:file-comment - "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/error.lisp,v 1.39 1993/10/25 14:00:47 ram Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/error.lisp,v 1.40 1993/10/25 14:13:08 ram Exp $") ;;; ;;; ********************************************************************** ;;; @@ -659,7 +659,7 @@ (:instance (when (or (functionp (condition-slot-initform slot)) (dolist (initarg (condition-slot-initargs slot) nil) - (when (functionp (getf initarg e-def-initargs)) + (when (functionp (getf e-def-initargs initarg)) (return t)))) (push slot (condition-class-hairy-slots class)))) ((nil) -- GitLab