summaryrefslogtreecommitdiff
path: root/libguile/gh_funcs.c
diff options
context:
space:
mode:
Diffstat (limited to 'libguile/gh_funcs.c')
-rw-r--r--libguile/gh_funcs.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/libguile/gh_funcs.c b/libguile/gh_funcs.c
index 6f43cf734..cdb07a4cc 100644
--- a/libguile/gh_funcs.c
+++ b/libguile/gh_funcs.c
@@ -130,7 +130,8 @@ gh_new_procedure5_0 (const char *proc_name, SCM (*fn) ())
SCM
gh_define (const char *name, SCM val)
{
- return scm_sysintern (name, val);
+ scm_c_define (name, val);
+ return SCM_UNSPECIFIED;
}