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-4-15-g9c2


From: Ludovic Courtès
Subject: [Guile-commits] GNU Guile branch, master, updated. release_1-9-4-15-g9c2224f
Date: Thu, 22 Oct 2009 17:06:05 +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=9c2224f2a616bc4fb3fca7947d65c44c6c66ffdf

The branch, master has been updated
       via  9c2224f2a616bc4fb3fca7947d65c44c6c66ffdf (commit)
      from  b70f43e318b60f00776fae5580914f31937ec0d8 (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 9c2224f2a616bc4fb3fca7947d65c44c6c66ffdf
Author: Ludovic Courtès <address@hidden>
Date:   Thu Oct 22 19:05:59 2009 +0200

    SRFI-88: Call `read-set!' at compile time and run time.
    
    * module/srfi/srfi-88.scm: Call `read-set!' both at compile time and run
      time.

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

Summary of changes:
 module/srfi/srfi-88.scm |    7 +++++--
 1 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/module/srfi/srfi-88.scm b/module/srfi/srfi-88.scm
index 0fec19e..9538f5c 100644
--- a/module/srfi/srfi-88.scm
+++ b/module/srfi/srfi-88.scm
@@ -1,6 +1,6 @@
 ;;; srfi-88.scm --- Keyword Objects
 
-;; Copyright (C) 2008 Free Software Foundation, Inc.
+;; Copyright (C) 2008, 2009 Free Software Foundation, Inc.
 ;;
 ;; This library is free software; you can redistribute it and/or
 ;; modify it under the terms of the GNU Lesser General Public
@@ -33,7 +33,10 @@
 (cond-expand-provide (current-module) '(srfi-88))
 
 
-(read-set! keywords 'postfix)
+;; Change the keyword syntax both at compile time and run time; the latter is
+;; useful at the REPL.
+(eval-when (compile load)
+  (read-set! keywords 'postfix))
 
 (define (keyword->string k)
   "Return the name of @var{k} as a string."


hooks/post-receive
-- 
GNU Guile




reply via email to

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