diff --git a/asdf.lisp b/asdf.lisp index 0ff0424333bb618d7028e1bdb6ded63e269c5821..4b7fb072022ae5e8e2a598ba88070a953021cbaa 100644 --- a/asdf.lisp +++ b/asdf.lisp @@ -735,7 +735,10 @@ actually-existing directory." ((components :initarg :components :reader circular-dependency-components))) (define-condition duplicate-names (system-definition-error) - ((name :initarg :name :reader duplicate-names-name))) + ((name :initarg :name :reader duplicate-names-name)) + (:report (lambda (c s) + (format s "~@<Error while defining system: multiple components are given same name ~A~@:>" + (duplicate-names-name c))))) (define-condition missing-component (system-definition-error) ((requires :initform "(unnamed)" :reader missing-requires :initarg :requires) @@ -1948,8 +1951,7 @@ Returns the new tree (which probably shares structure with the old one)" (loop :for c in (module-components ret) :do (if (gethash (component-name c) name-hash) - (error 'duplicate-names - :name (component-name c)) + (error 'duplicate-names :name (component-name c)) (setf (gethash (component-name c) name-hash) t)))))