diff options
-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 |