diff options
author | Marius Vollmer <mvo@zagadka.de> | 2001-05-15 14:57:22 +0000 |
---|---|---|
committer | Marius Vollmer <mvo@zagadka.de> | 2001-05-15 14:57:22 +0000 |
commit | 86d31dfe7d0754b863863f6544c75097ef68fe8c (patch) | |
tree | 0f78f9d3ace802b80422dcedea25098cf901d05a /libguile/gh_funcs.c | |
parent | 7c33806ae676601f902dbdc0f39c1f0828d68951 (diff) | |
download | guile-86d31dfe7d0754b863863f6544c75097ef68fe8c.tar.gz |
Merge from mvo-vcell-cleanup-1-branch.
Diffstat (limited to 'libguile/gh_funcs.c')
-rw-r--r-- | libguile/gh_funcs.c | 3 |
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; } |