1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-04-29 19:30:36 +02:00

Export readline history functions

* guile-readline/ice-9/readline.scm: Export history functions.
This commit is contained in:
Neil Jerram 2009-08-30 11:03:34 +01:00
parent 0ffc78e384
commit f84c500d2e
2 changed files with 17 additions and 5 deletions

View file

@ -24,11 +24,15 @@
(define-module (ice-9 readline)
:use-module (ice-9 session)
:use-module (ice-9 regex)
:use-module (ice-9 buffered-input)
:no-backtrace
:export (filename-completion-function))
#:use-module (ice-9 session)
#:use-module (ice-9 regex)
#:use-module (ice-9 buffered-input)
#:no-backtrace
#:export (filename-completion-function
add-history
read-history
write-history
clear-history))