Fix xcvb build.
authorFrancois-Rene Rideau <fare@tunes.org>
Tue, 19 Jun 2012 06:17:26 +0000 (02:17 -0400)
committerFrancois-Rene Rideau <fare@tunes.org>
Tue, 19 Jun 2012 06:17:26 +0000 (02:17 -0400)
build.xcvb
racket.lisp
skribe.lisp

index 0da11c5..7214e9b 100644 (file)
@@ -2,9 +2,9 @@
 (module
  (:fullname
   "scribble"
+  :build-depends-on
+  ("meta" "fare-utils" "fare-matcher" "named-readtables")
   :depends-on
   ("package" "utilities" "stream-line-column" "skribe" "racket" "readtables")
-  :build-depends-on
-  ("meta" "fare-utils" "fare-matcher")
   :supersedes-asdf
   ("scribble")))
index ea14395..b6fa5e8 100644 (file)
@@ -5,6 +5,8 @@
 
 (in-package :scribble)
 
+(eval-now
+
 (defun parse-at-syntax (i)
   ;; Parse an @ expression.
   (let* ((o (make-string-output-stream)) ; buffered output of "current stuff"
   (with-input-from-string (i x)
     (let ((*readtable* *scribble-at-readtable*))
       (scribble::parse-at-syntax i))))
+
+);eval-now
\ No newline at end of file
index 57889b4..e2025bd 100644 (file)
@@ -5,6 +5,7 @@
 (in-package :scribble)
 (named-readtables:in-readtable :meta)
 
+(eval-now
 ; -----------------------------------------------------------------------------
 ;;; Customizing string preprocessing
 
@@ -278,3 +279,4 @@ The author wrote this support, but didn't test it."
                      :cons 'cons))
 
 (named-readtables:in-readtable :standard)
+);eval-now