From 3e2b564c93c57a78c4574fc07f3e3c9cd6fbc65f Mon Sep 17 00:00:00 2001 From: pw <pw> Date: Tue, 4 May 1999 13:11:59 +0000 Subject: [PATCH] Fix for multiple uses of (:use ...) in defpackage. From Marco Antoniotti. --- code/package.lisp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/code/package.lisp b/code/package.lisp index 7d942d43d..39c580edb 100644 --- a/code/package.lisp +++ b/code/package.lisp @@ -5,7 +5,7 @@ ;;; Carnegie Mellon University, and has been placed in the public domain. ;;; (ext:file-comment - "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/package.lisp,v 1.51 1998/07/16 13:30:49 pw Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/package.lisp,v 1.52 1999/05/04 13:11:59 pw Exp $") ;;; ;;; ********************************************************************** ;;; @@ -697,8 +697,9 @@ (setf shadowing-imports (acons package-name names shadowing-imports)))))) (:use - (setf use (stringify-names (cdr option) "package") ) - (setf use-p t)) + (let ((new (stringify-names (cdr option) "package"))) + (setf use (delete-duplicates (nconc use new) :test #'string=)) + (setf use-p t))) (:import-from (let ((package-name (stringify-name (second option) "package")) (names (stringify-names (cddr option) "symbol"))) -- GitLab