Skip to content
Snippets Groups Projects
Commit 013217db authored by Kevin Rosenberg's avatar Kevin Rosenberg
Browse files

minor code cleanup

parent 3c6ae4bf
No related branches found
No related tags found
No related merge requests found
;;; This is asdf: Another System Definition Facility. $Revision: 1.53 $ ;;; This is asdf: Another System Definition Facility. $Revision: 1.54 $
;;; ;;;
;;; Feedback, bug reports, and patches are all welcome: please mail to ;;; Feedback, bug reports, and patches are all welcome: please mail to
;;; <cclan-list@lists.sf.net>. But note first that the canonical ;;; <cclan-list@lists.sf.net>. But note first that the canonical
...@@ -88,7 +88,7 @@ ...@@ -88,7 +88,7 @@
(in-package #:asdf) (in-package #:asdf)
;;; parse the cvs revision into something that might be vaguely useful. ;;; parse the cvs revision into something that might be vaguely useful.
(defvar *asdf-revision* (let* ((v "$Revision: 1.53 $") (defvar *asdf-revision* (let* ((v "$Revision: 1.54 $")
(colon (position #\: v)) (colon (position #\: v))
(dot (position #\. v))) (dot (position #\. v)))
(and v colon dot (and v colon dot
...@@ -616,11 +616,6 @@ system.")) ...@@ -616,11 +616,6 @@ system."))
(format *trace-output* "~&;;; ~A on ~A~%" (format *trace-output* "~&;;; ~A on ~A~%"
operation component)) operation component))
(defmethod output-files ((operation operation) (c component))
(sysdef-error
"Required method OUTPUT-FILES not implemented for operation ~A, component ~A"
(class-of operation) (class-of c)))
;;; compile-op ;;; compile-op
(defclass compile-op (operation) (defclass compile-op (operation)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment