Commit 41a776c3 authored by Christophe Rhodes's avatar Christophe Rhodes
Browse files

PROVIDE asdf. I'm fairly sure I want to do this, despite PROVIDE's

deprecation, because (a) I want to undeprecate it; (b) its effect is
trivially reimplementable even if it vanishes; (c) it will shortly
become the right thing to do in sbcl.
parent 74007220
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
;;; This is asdf: Another System Definition Facility.  $Revision: 1.78 $
;;; This is asdf: Another System Definition Facility.  $Revision: 1.79 $
;;;
;;; Feedback, bug reports, and patches are all welcome: please mail to
;;; <cclan-list@lists.sf.net>.  But note first that the canonical
@@ -106,7 +106,7 @@

(in-package #:asdf)

(defvar *asdf-revision* (let* ((v "$Revision: 1.78 $")
(defvar *asdf-revision* (let* ((v "$Revision: 1.79 $")
			       (colon (or (position #\: v) -1))
			       (dot (position #\. v)))
			  (and v colon dot 
@@ -1099,3 +1099,5 @@ output to *verbose-out*. Returns the shell's exit code."
   *central-registry*)
  
  (pushnew 'module-provide-asdf sb-ext:*module-provider-functions*))

(provide 'asdf)