diff options
author | Greg J. Badros <gjb@cs.washington.edu> | 2000-01-11 21:47:57 +0000 |
---|---|---|
committer | Greg J. Badros <gjb@cs.washington.edu> | 2000-01-11 21:47:57 +0000 |
commit | 0f981281fd134c61c30fad8e25f26647890848d2 (patch) | |
tree | 0aeb4be29d73014f43a8347ffa30b8b8742962ab /libguile/debug.c | |
parent | e723f8de40a7b727c7c970cdaaf1e580b8720d66 (diff) | |
download | guile-0f981281fd134c61c30fad8e25f26647890848d2.tar.gz |
* guile-func-name-check.in: Added this script to statically check
#define FUNC_NAME, #undef FUNC_NAME in the source.
* sort.c, posix.c: Fix #undef FUNC_NAME lines to not have trailing
redundant comment, semicolon; caught by new guile-func-name-check
script.
* debug.c: Fix mistaken #define FUNC_NAME for scm_make_iloc.
Caught by new guile-func-name-check-script.
* Makefile.am: Added guile-func-name-check to bin_SCRIPTS
* ramap.c: Fix #if 0'd out code to be syntactically acceptable to
guile-func-name-check.
* guile-doc-snarf.in: Run guile-func-name-check on the file before
doing the snarf.
Diffstat (limited to 'libguile/debug.c')
-rw-r--r-- | libguile/debug.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libguile/debug.c b/libguile/debug.c index ad1be6a99..c2af8bbfa 100644 --- a/libguile/debug.c +++ b/libguile/debug.c @@ -296,7 +296,7 @@ SCM_DEFINE (scm_make_iloc, "make-iloc", 3, 0, 0, SCM_DEFINE (scm_iloc_p, "iloc?", 1, 0, 0, (SCM obj), "") -#define FUNC_NAME s_scm_iGUILE_p +#define FUNC_NAME s_scm_iloc_p { return SCM_BOOL(SCM_ILOCP (obj)); } |