Commit 2a389970 authored by Peter Van Eynde's avatar Peter Van Eynde
Browse files

improved duplicate test by using equal

parent 19a6eeb1
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
;;; This is asdf: Another System Definition Facility.  $Revision: 1.87 $
;;; This is asdf: Another System Definition Facility.  $Revision: 1.88 $
;;;
;;; Feedback, bug reports, and patches are all welcome: please mail to
;;; <cclan-list@lists.sf.net>.  But note first that the canonical
@@ -109,7 +109,7 @@

(in-package #:asdf)

(defvar *asdf-revision* (let* ((v "$Revision: 1.87 $")
(defvar *asdf-revision* (let* ((v "$Revision: 1.88 $")
			       (colon (or (position #\: v) -1))
			       (dot (position #\. v)))
			  (and v colon dot 
@@ -974,7 +974,7 @@ Returns the new tree (which probably shares structure with the old one)"
		      do (push (component-name c) *serial-depends-on*))))

	;; check for duplicate names
	(let ((name-hash (make-hash-table :test #'equalp)))
	(let ((name-hash (make-hash-table :test #'equal)))
	  (loop for c in (module-components ret)
		do
		(if (gethash (component-name c)
+5 −3
Original line number Diff line number Diff line
cl-asdf (1.87-1) unstable; urgency=low
cl-asdf (1.87-1) UNRELEASED; urgency=low

  * Noticed that I actually increased the version with the CVS commit
  * Updated the standards version
  * Remove the prepare build stuff, build through darcs
  * Improve duplicate names test: use equal instead of equalp.
    From a comment from Faré.

 -- Peter Van Eynde <pvaneynd@debian.org>  Fri,  1 Jul 2005 14:02:58 +0200
 -- Peter Van Eynde <pvaneynd@debian.org>  Thu, 22 Sep 2005 12:52:31 +0200

cl-asdf (1.86-5) unstable; urgency=low

+1 −1
Original line number Diff line number Diff line
@@ -67,7 +67,7 @@ binary-arch: build install
	dh_installman
	dh_installinfo
#	dh_undocumented
	dh_installchangelogs changelog
	dh_installchangelogs ChangeLog
	dh_link
	dh_strip
	dh_compress