From f0a5ff841c64f62fa1e6414495d211c088339cb6 Mon Sep 17 00:00:00 2001 From: Gary King <gwking@metabang.com> Date: Wed, 14 Feb 2007 15:16:24 +0000 Subject: [PATCH] Minor patch in class-for-type that evaluates only *package* at read time rather than (package-name *package*); this keeps case sensitive Lisps happy all the time and keeps case insensitive lisps happily insensitive. --- asdf.lisp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/asdf.lisp b/asdf.lisp index 856c6816..3f9485ed 100644 --- a/asdf.lisp +++ b/asdf.lisp @@ -1,4 +1,4 @@ -;;; This is asdf: Another System Definition Facility. $Revision: 1.105 $ +;;; This is asdf: Another System Definition Facility. $Revision: 1.106 $ ;;; ;;; Feedback, bug reports, and patches are all welcome: please mail to ;;; <cclan-list@lists.sf.net>. But note first that the canonical @@ -112,7 +112,7 @@ (in-package #:asdf) -(defvar *asdf-revision* (let* ((v "$Revision: 1.105 $") +(defvar *asdf-revision* (let* ((v "$Revision: 1.106 $") (colon (or (position #\: v) -1)) (dot (position #\. v))) (and v colon dot @@ -967,7 +967,7 @@ system.")) (defun class-for-type (parent type) (let* ((extra-symbols (list (find-symbol (symbol-name type) *package*) (find-symbol (symbol-name type) - #.(package-name *package*)))) + (package-name #.*package*)))) (class (dolist (symbol (if (keywordp type) extra-symbols (cons type extra-symbols))) -- GitLab