guile-commits
[Top][All Lists]
Advanced

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

[Guile-commits] GNU Guile branch, stable-2.0, updated. v2.0.7-86-g10a467


From: Andy Wingo
Subject: [Guile-commits] GNU Guile branch, stable-2.0, updated. v2.0.7-86-g10a467f
Date: Tue, 12 Feb 2013 08:41:19 +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=10a467f39887b722cb4cffa1a22c94a7b1e37bbc

The branch, stable-2.0 has been updated
       via  10a467f39887b722cb4cffa1a22c94a7b1e37bbc (commit)
      from  1d14478ffb2e7b2f9790d34f8c03376abc0675f8 (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 10a467f39887b722cb4cffa1a22c94a7b1e37bbc
Author: Andy Wingo <address@hidden>
Date:   Tue Feb 12 09:40:55 2013 +0100

    allow (define-macro name (lambda ...))
    
    * module/ice-9/boot-9.scm (define-macro): Allow define-macro NAME
      LAMBDA.  A bugfix.  Thanks to Akop Pogosian.

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

Summary of changes:
 module/ice-9/boot-9.scm |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/module/ice-9/boot-9.scm b/module/ice-9/boot-9.scm
index 4efd753..404243f 100644
--- a/module/ice-9/boot-9.scm
+++ b/module/ice-9/boot-9.scm
@@ -871,6 +871,8 @@ information is unavailable."
        #'(define-macro macro doc (lambda args body1 body ...)))
       ((_ (macro . args) body ...)
        #'(define-macro macro #f (lambda args body ...)))
+      ((_ macro transformer)
+       #'(define-macro macro #f transformer))
       ((_ macro doc transformer)
        (or (string? (syntax->datum #'doc))
            (not (syntax->datum #'doc)))


hooks/post-receive
-- 
GNU Guile



reply via email to

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