civodul pushed a commit to branch master
in repository dmd.
commit b6529fc306799cc4187a26a976f42bb978b68e12
Author: Ludovic Courtès <[email protected]>
Date: Wed Nov 5 10:28:16 2014 +0100
dmd: Autoload (ice-9 readline).
* modules/dmd.scm: Autoload (ice-9 readline) since it's rarely needed
anyway.
---
modules/dmd.scm | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/modules/dmd.scm b/modules/dmd.scm
index cf72d7a..0d5fbda 100644
--- a/modules/dmd.scm
+++ b/modules/dmd.scm
@@ -20,7 +20,7 @@
(define-module (dmd)
#:use-module (ice-9 match)
#:use-module (ice-9 rdelim) ;; Line-based I/O.
- #:use-module (ice-9 readline) ;; Readline (for interactive use).
+ #:autoload (ice-9 readline) (activate-readline) ;for interactive use
#:use-module (oop goops) ;; Defining classes and methods.
#:use-module (srfi srfi-1) ;; List library.
#:use-module (srfi srfi-26)