diff options
author | Andy Wingo <wingo@pobox.com> | 2011-02-08 23:24:36 +0100 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2011-02-08 23:46:00 +0100 |
commit | f92119034e25b1211ddf0257fffa6c946095988c (patch) | |
tree | bde2074b1a97db2db8b2a3742b97934c1c92952f /guile-readline | |
parent | 1497e87a4f2eb414dcb2fde306d98013067dd410 (diff) |
remove readline-activator.scm
* guile-readline/readline-activator.scm: Remove this file that was
deprecated in Guile 1.4.
Diffstat (limited to 'guile-readline')
-rw-r--r-- | guile-readline/readline-activator.scm | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/guile-readline/readline-activator.scm b/guile-readline/readline-activator.scm deleted file mode 100644 index 42ed113bf..000000000 --- a/guile-readline/readline-activator.scm +++ /dev/null @@ -1,17 +0,0 @@ -(define-module (readline-activator)) - -(define-public (activate-readline) - (if (not (provided? 'readline)) - (scm-error 'misc-error - 'activate-readline - "readline is not provided in this Guile installation" - '() - '())) - (save-module-excursion - (lambda () - (define-module (guile)) - (dynamic-call "scm_init_readline" (dynamic-link "libguilereadline.so")) - (if (isatty? (current-input-port)) - (begin - (define-module (guile) :use-module (ice-9 readline)) - (define-module (guile-user) :use-module (ice-9 readline))))))) |