Export readline history functions
authorNeil Jerram <neil@ossau.uklinux.net>
Sun, 30 Aug 2009 10:03:34 +0000 (11:03 +0100)
committerNeil Jerram <neil@ossau.uklinux.net>
Sun, 30 Aug 2009 10:03:34 +0000 (11:03 +0100)
* guile-readline/ice-9/readline.scm: Export history functions.

NEWS
guile-readline/ice-9/readline.scm

diff --git a/NEWS b/NEWS
index 0f2d693..4797b0c 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -32,6 +32,14 @@ respectively.
  
 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):
 
index 96af69e..4c852ee 100644 (file)
 \f
 
 (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))
 
 \f