From c1e8ac457e937eceaa763934bae19bdeeb713719 Mon Sep 17 00:00:00 2001 From: ram <ram> Date: Sat, 9 Nov 1991 12:27:36 +0000 Subject: [PATCH] Fix PCL DEFMETHOD source context. --- compiler/ir1util.lisp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/compiler/ir1util.lisp b/compiler/ir1util.lisp index 11f084c4a..67e1a8de2 100644 --- a/compiler/ir1util.lisp +++ b/compiler/ir1util.lisp @@ -7,7 +7,7 @@ ;;; Scott Fahlman or slisp-group@cs.cmu.edu. ;;; (ext:file-comment - "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/ir1util.lisp,v 1.42 1991/11/06 14:08:42 ram Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/ir1util.lisp,v 1.43 1991/11/09 12:27:36 ram Exp $") ;;; ;;; ********************************************************************** ;;; @@ -1445,10 +1445,10 @@ (def-source-context pcl::defmethod (name &rest stuff) (let ((arg-pos (position-if #'listp stuff))) (if arg-pos - `(defmethod ,name ,@(subseq stuff 0 arg-pos) + `(pcl::defmethod ,name ,@(subseq stuff 0 arg-pos) ,@(nth-value 2 (pcl::parse-specialized-lambda-list (elt stuff arg-pos)))) - `(defmethod ,name "<illegal syntax>")))) + `(pcl::defmethod ,name "<illegal syntax>")))) ;;; SOURCE-FORM-CONTEXT -- Internal -- GitLab