1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-04-30 03:40:34 +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

8
NEWS
View file

@ -32,6 +32,14 @@ respectively.
Interested users should see the ChangeLog for more information. Interested users should see the ChangeLog for more information.
* Changes to Scheme functions and syntax
** New readline history functions
The (ice-9 readline) module now provides add-history, read-history,
write-history and clear-history, which wrap the corresponding GNU
History library functions.
Changes in 1.9.x (since the 1.8.x series): Changes in 1.9.x (since the 1.8.x series):

View file

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