diff options
author | Greg J. Badros <gjb@cs.washington.edu> | 2000-01-05 19:05:23 +0000 |
---|---|---|
committer | Greg J. Badros <gjb@cs.washington.edu> | 2000-01-05 19:05:23 +0000 |
commit | a1ec69163dd2e55e5d2b03a164513aa4a0d5943c (patch) | |
tree | 99489194c03fa41397c77e84b3f8660ffef1ed30 /libguile/read.c | |
parent | fb764465068f84e3ab047c45792ffc3026e5505a (diff) | |
download | guile-a1ec69163dd2e55e5d2b03a164513aa4a0d5943c.tar.gz |
*.[ch]: Replace GUILE_PROC w/ SCM_DEFINE.
Diffstat (limited to 'libguile/read.c')
-rw-r--r-- | libguile/read.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libguile/read.c b/libguile/read.c index 9fe22c784..11a11c1c5 100644 --- a/libguile/read.c +++ b/libguile/read.c @@ -74,7 +74,7 @@ scm_option scm_read_opts[] = { "Style of keyword recognition: #f or 'prefix"} }; -GUILE_PROC (scm_read_options, "read-options-interface", 0, 1, 0, +SCM_DEFINE (scm_read_options, "read-options-interface", 0, 1, 0, (SCM setting), "") #define FUNC_NAME s_scm_read_options @@ -92,7 +92,7 @@ GUILE_PROC (scm_read_options, "read-options-interface", 0, 1, 0, /* An association list mapping extra hash characters to procedures. */ static SCM *scm_read_hash_procedures; -GUILE_PROC (scm_read, "read", 0, 1, 0, +SCM_DEFINE (scm_read, "read", 0, 1, 0, (SCM port), "") #define FUNC_NAME s_scm_read @@ -701,7 +701,7 @@ exit: /* Manipulate the read-hash-procedures alist. This could be written in Scheme, but maybe it will also be used by C code during initialisation. */ -GUILE_PROC (scm_read_hash_extend, "read-hash-extend", 2, 0, 0, +SCM_DEFINE (scm_read_hash_extend, "read-hash-extend", 2, 0, 0, (SCM chr, SCM proc), "") #define FUNC_NAME s_scm_read_hash_extend |