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/fluids.c | |
parent | fb764465068f84e3ab047c45792ffc3026e5505a (diff) | |
download | guile-a1ec69163dd2e55e5d2b03a164513aa4a0d5943c.tar.gz |
*.[ch]: Replace GUILE_PROC w/ SCM_DEFINE.
Diffstat (limited to 'libguile/fluids.c')
-rw-r--r-- | libguile/fluids.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libguile/fluids.c b/libguile/fluids.c index 9f040d37a..96e459de5 100644 --- a/libguile/fluids.c +++ b/libguile/fluids.c @@ -118,7 +118,7 @@ int next_fluid_num () return n; } -GUILE_PROC (scm_make_fluid, "make-fluid", 0, 0, 0, +SCM_DEFINE (scm_make_fluid, "make-fluid", 0, 0, 0, (), "") #define FUNC_NAME s_scm_make_fluid @@ -131,7 +131,7 @@ GUILE_PROC (scm_make_fluid, "make-fluid", 0, 0, 0, } #undef FUNC_NAME -GUILE_PROC (scm_fluid_p, "fluid?", 1, 0, 0, +SCM_DEFINE (scm_fluid_p, "fluid?", 1, 0, 0, (SCM fl), "") #define FUNC_NAME s_scm_fluid_p @@ -140,7 +140,7 @@ GUILE_PROC (scm_fluid_p, "fluid?", 1, 0, 0, } #undef FUNC_NAME -GUILE_PROC (scm_fluid_ref, "fluid-ref", 1, 0, 0, +SCM_DEFINE (scm_fluid_ref, "fluid-ref", 1, 0, 0, (SCM fl), "") #define FUNC_NAME s_scm_fluid_ref @@ -157,7 +157,7 @@ GUILE_PROC (scm_fluid_ref, "fluid-ref", 1, 0, 0, } #undef FUNC_NAME -GUILE_PROC (scm_fluid_set_x, "fluid-set!", 2, 0, 0, +SCM_DEFINE (scm_fluid_set_x, "fluid-set!", 2, 0, 0, (SCM fl, SCM val), "") #define FUNC_NAME s_scm_fluid_set_x @@ -213,7 +213,7 @@ apply_thunk (void *thunk) return scm_apply ((SCM) thunk, SCM_EOL, SCM_EOL); } -GUILE_PROC (scm_with_fluids, "with-fluids*", 3, 0, 0, +SCM_DEFINE (scm_with_fluids, "with-fluids*", 3, 0, 0, (SCM fluids, SCM vals, SCM thunk), "") #define FUNC_NAME s_scm_with_fluids |