summaryrefslogtreecommitdiff
path: root/libguile/rdelim.c
diff options
context:
space:
mode:
authorMarius Vollmer <mvo@zagadka.de>2001-05-20 00:35:43 +0000
committerMarius Vollmer <mvo@zagadka.de>2001-05-20 00:35:43 +0000
commit9a441ddb342277f220435280718658f3f126ed43 (patch)
tree211527b14d2c0dbc45843db04de9b6255539ce7b /libguile/rdelim.c
parentc88a8162c408fe70d27e144a4a380fc88ab20dc5 (diff)
downloadguile-9a441ddb342277f220435280718658f3f126ed43.tar.gz
(scm_c_make_gsubr, scm_c_define_gsubr, scm_c_make_gsubr_with_generic,
scm_c_define_gsubr_with_generic): New functions. They replace scm_make_gsubr and scm_make_gsubr_with_generic. The `make' variants only create the gsubr object, while the `define' variants also put it into the current module. Changed all callers. (scm_make_gsubr, scm_make_gsubr_with_generic): Deprecated. (scm_c_make_subr, scm_c_define_subr, scm_c_make_subr_with_generic, scm_c_define_subr_with_generic): New functions. They replace scm_make_subr, scm_make_subr_opt and scm_make_subr_with_generic. The `make' variants only create the subr object, while the `define' variants also put it into the current module. Changed all callers. (scm_make_subr, scm_make_subr_opt, scm_make_subr_with_generic): Deprecated.
Diffstat (limited to 'libguile/rdelim.c')
-rw-r--r--libguile/rdelim.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/libguile/rdelim.c b/libguile/rdelim.c
index 3e8697a31..1440e1b6c 100644
--- a/libguile/rdelim.c
+++ b/libguile/rdelim.c
@@ -307,7 +307,8 @@ scm_init_rdelim_builtins (void)
void
scm_init_rdelim (void)
{
- scm_make_gsubr ("%init-rdelim-builtins", 0, 0, 0, scm_init_rdelim_builtins);
+ scm_c_define_gsubr ("%init-rdelim-builtins", 0, 0, 0,
+ scm_init_rdelim_builtins);
}
/*