From e586be785c27443df5d0f593be2b8d9fb84e5d1d Mon Sep 17 00:00:00 2001 From: Mikael Djurfeldt Date: Mon, 9 Nov 1998 14:26:47 +0000 Subject: [PATCH] * boot-9.scm (readline-options, readline-enable, readline.disable, readline-set!: New options interface. --- ice-9/ChangeLog | 5 +++++ ice-9/boot-9.scm | 4 ++++ 2 files changed, 9 insertions(+) diff --git a/ice-9/ChangeLog b/ice-9/ChangeLog index e1b946f60..86caf88f2 100644 --- a/ice-9/ChangeLog +++ b/ice-9/ChangeLog @@ -1,3 +1,8 @@ +1998-11-09 Mikael Djurfeldt + + * boot-9.scm (readline-options, readline-enable, readline.disable, + readline-set!: New options interface. + 1998-11-05 Mikael Djurfeldt * boot-9.scm: Set the repl start module in `top-repl' instead of diff --git a/ice-9/boot-9.scm b/ice-9/boot-9.scm index dd001d854..ef63d6ded 100644 --- a/ice-9/boot-9.scm +++ b/ice-9/boot-9.scm @@ -2275,6 +2275,10 @@ (print-options-interface (print-options print-enable print-disable) (print-set!)) + + (readline-options-interface + (readline-options readline-enable readline-disable) + (readline-set!)) )) (option-name car) (option-value cadr)