guile-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Guile-commits] GNU Guile branch, master, updated. release_1-9-2-133-gf8


From: Neil Jerram
Subject: [Guile-commits] GNU Guile branch, master, updated. release_1-9-2-133-gf84c500
Date: Sun, 30 Aug 2009 10:03:44 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU Guile".

http://git.savannah.gnu.org/cgit/guile.git/commit/?id=f84c500d2e29c619e6a989d0d11911fea414d795

The branch, master has been updated
       via  f84c500d2e29c619e6a989d0d11911fea414d795 (commit)
      from  0ffc78e38484536bd33c77439487af7a6f7dc079 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit f84c500d2e29c619e6a989d0d11911fea414d795
Author: Neil Jerram <address@hidden>
Date:   Sun Aug 30 11:03:34 2009 +0100

    Export readline history functions
    
    * guile-readline/ice-9/readline.scm: Export history functions.

-----------------------------------------------------------------------

Summary of changes:
 NEWS                              |    8 ++++++++
 guile-readline/ice-9/readline.scm |   14 +++++++++-----
 2 files changed, 17 insertions(+), 5 deletions(-)

diff --git a/NEWS b/NEWS
index 0f2d693..4797b0c 100644
--- 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):
 
diff --git a/guile-readline/ice-9/readline.scm 
b/guile-readline/ice-9/readline.scm
index 96af69e..4c852ee 100644
--- a/guile-readline/ice-9/readline.scm
+++ b/guile-readline/ice-9/readline.scm
@@ -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))
 
 
 


hooks/post-receive
-- 
GNU Guile




reply via email to

[Prev in Thread] Current Thread [Next in Thread]