diff options
author | Greg J. Badros <gjb@cs.washington.edu> | 1999-12-12 18:30:09 +0000 |
---|---|---|
committer | Greg J. Badros <gjb@cs.washington.edu> | 1999-12-12 18:30:09 +0000 |
commit | 6b5a304f6b006beeb6088d5002c7574e874b28e3 (patch) | |
tree | e8c4739bb0e2e1cb7ccf7b7a5a024d36258073a6 /libguile/ramap.c | |
parent | 5bff3127b542b14a9f881af0b68d61e21712d9c8 (diff) | |
download | guile-6b5a304f6b006beeb6088d5002c7574e874b28e3.tar.gz |
* *.c, scm_validate.h: Use SCM_VALIDATE_NIM, not SCM_VALIDATE_NIMP
(none of the other validate macros have the trailing P).
Diffstat (limited to 'libguile/ramap.c')
-rw-r--r-- | libguile/ramap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libguile/ramap.c b/libguile/ramap.c index 813fd1d7a..b3f0a81af 100644 --- a/libguile/ramap.c +++ b/libguile/ramap.c @@ -1754,7 +1754,7 @@ GUILE_PROC(scm_array_index_map_x, "array-index-map!", 2, 0, 0, #define FUNC_NAME s_scm_array_index_map_x { scm_sizet i; - SCM_VALIDATE_NIMP(1,ra); + SCM_VALIDATE_NIM (1,ra); SCM_VALIDATE_PROC(2,proc); switch (SCM_TYP7(ra)) { |