git.fiddlerwoaroof.com
Browse code

bump travis again!

Ed Langley authored on 01/11/2018 07:33:38
Showing 1 changed files
... ...
@@ -16,18 +16,18 @@
16 16
 
17 17
 
18 18
 
19
-(define-symbol-macro *my-pathname* 
20
-    (or *compile-file-pathname*
21
-        *load-pathname*))
22
-
23 19
 (stepwise
20
+  ((defun tr (v)
21
+     (prog1 v
22
+       (format t "~&tracing: ~s~%" v))))
23
+
24 24
   ((defun load-compile (pn)
25 25
      (load (compile-file pn))))
26 26
 
27 27
   ((princ
28 28
     (mapcar 'load-compile
29 29
             (directory (merge-pathnames "*.asd"
30
-                                        *my-pathname*))))
30
+                                        *load-pathname*))))
31 31
    (terpri))
32 32
 
33 33
   ((ql:quickload :daydreamer))