diff options
author | Andy Wingo <wingo@oblong.net> | 2009-05-26 16:03:37 +0200 |
---|---|---|
committer | Andy Wingo <wingo@oblong.net> | 2009-05-26 16:03:37 +0200 |
commit | 9d07bb7276d1be078c5933645897694035ecdcfe (patch) | |
tree | 84891f0b1d484ba336498b4cbf74f3bf73074c1c | |
parent | 73643339527d27a09d62424428b67417ca627bf5 (diff) | |
download | guile-9d07bb7276d1be078c5933645897694035ecdcfe.tar.gz |
distcheck fix, fix (ice-9 time)
* lang/Makefile.am (elisp_sources): Add elisp/expand.scm.
* module/ice-9/time.scm (time): Fix for new macro expander. Ew.
-rw-r--r-- | lang/Makefile.am | 1 | ||||
-rw-r--r-- | module/ice-9/time.scm | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/lang/Makefile.am b/lang/Makefile.am index 6dc2e2902..97c440d75 100644 --- a/lang/Makefile.am +++ b/lang/Makefile.am @@ -28,6 +28,7 @@ elisp_sources = \ elisp/example.el \ elisp/interface.scm \ elisp/transform.scm \ + elisp/expand.scm \ elisp/variables.scm \ \ elisp/primitives/buffers.scm \ diff --git a/module/ice-9/time.scm b/module/ice-9/time.scm index a7045969f..86ebcbff1 100644 --- a/module/ice-9/time.scm +++ b/module/ice-9/time.scm @@ -53,6 +53,6 @@ result)) (define-macro (time exp) - `(,time-proc (lambda () ,exp))) + `((@@ (ice-9 time) time-proc) (lambda () ,exp))) ;;; time.scm ends here |