Fix bug: Use correct `FUNC_NAME' for `scm_macro_binding'.
authorThien-Thi Nguyen <ttn@gnuvola.org>
Sat, 9 Jan 2010 14:12:47 +0000 (15:12 +0100)
committerAndy Wingo <wingo@pobox.com>
Sat, 9 Jan 2010 22:27:30 +0000 (23:27 +0100)
* libguile/macros.c (scm_macro_binding): Use correct FUNC_NAME.

Signed-off-by: Thien-Thi Nguyen <ttn@gnuvola.org>
libguile/macros.c

index edb6538..b3fea93 100644 (file)
@@ -170,7 +170,7 @@ SCM_DEFINE (scm_macro_binding, "macro-binding", 1, 0, 0,
            "Return the binding of the syntax transformer @var{m}, as passed to\n"
             "@code{make-syntax-transformer}. If @var{m} is a primitive syntax\n"
             "transformer, @code{#f} will be returned.")
-#define FUNC_NAME s_scm_macro_transformer
+#define FUNC_NAME s_scm_macro_binding
 {
   SCM_VALIDATE_MACRO (1, m);
   return SCM_MACRO_BINDING (m);