* readline.scm (readline-port): Use readline-options-interface.
authorMikael Djurfeldt <djurfeldt@nada.kth.se>
Mon, 9 Nov 1998 15:51:30 +0000 (15:51 +0000)
committerMikael Djurfeldt <djurfeldt@nada.kth.se>
Mon, 9 Nov 1998 15:51:30 +0000 (15:51 +0000)
ice-9/ChangeLog
ice-9/readline.scm

index 86caf88..cde5289 100644 (file)
@@ -1,8 +1,10 @@
-1998-11-09  Mikael Djurfeldt  <mdj@barbara.nada.kth.se>
+1998-11-10  Mikael Djurfeldt  <mdj@barbara.nada.kth.se>
 
        * boot-9.scm (readline-options, readline-enable, readline.disable,
        readline-set!: New options interface.
 
+       * readline.scm (readline-port): Use readline-options-interface.
+
 1998-11-05  Mikael Djurfeldt  <mdj@barbara.nada.kth.se>
 
        * boot-9.scm: Set the repl start module in `top-repl' instead of
index 38dac13..48e424d 100644 (file)
@@ -82,7 +82,7 @@
 
 (define-public readline-port
   (let ((do (lambda (r/w)
-             (if (memq 'history-file (read-options-interface))
+             (if (memq 'history-file (readline-options-interface))
                  (r/w (or (getenv history-variable)
                           history-file))))))
     (lambda ()