Commit 013217db authored by Kevin Rosenberg's avatar Kevin Rosenberg
Browse files

minor code cleanup

parent 3c6ae4bf
Loading
Loading
Loading
Loading
+2 −7
Original line number Diff line number Diff line
;;; 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
;;; <cclan-list@lists.sf.net>.  But note first that the canonical
@@ -88,7 +88,7 @@
(in-package #:asdf)

;;; 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))
			       (dot (position #\. v)))
			  (and v colon dot 
@@ -616,11 +616,6 @@ system."))
  (format *trace-output* "~&;;; ~A on ~A~%"
	  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

(defclass compile-op (operation)