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:
parent
0ffc78e384
commit
f84c500d2e
2 changed files with 17 additions and 5 deletions
8
NEWS
8
NEWS
|
@ -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):
|
||||||
|
|
||||||
|
|
|
@ -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))
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue