blob: 1dab2dd9c92eaacc9cafe4456ca6eae46eca6846 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#| -*-Scheme-*-
| Copied from scmutils/src/calculus/load.scm, GPL licenced.
|
| Assumes a band generated by something like load-all.scm has already been
| loaded with the regular scmutils stuff
|#
(with-working-directory-pathname (directory-pathname (current-load-pathname))
(lambda ()
;; (load "speedup" generic-environment)
))
|