summaryrefslogtreecommitdiff
path: root/libguile/procs.c
diff options
context:
space:
mode:
authorAndy Wingo <wingo@oblong.net>2009-03-17 16:09:41 +0100
committerAndy Wingo <wingo@oblong.net>2009-03-17 16:09:41 +0100
commit3e64d235e9f950b73c70b57c8ee3ee349d2fdae8 (patch)
tree21b638a7b35d02678ef40bba1f3dd52e5c0c9cf2 /libguile/procs.c
parentb07a3cfda145c11039eb92a9d92ee2257479e2b7 (diff)
parentfeccd2d3100fd2964d4c2df58ab3da7ce4949a66 (diff)
downloadguile-3e64d235e9f950b73c70b57c8ee3ee349d2fdae8.tar.gz
Merge commit 'feccd2d3100fd2964d4c2df58ab3da7ce4949a66' into vm-check
Diffstat (limited to 'libguile/procs.c')
-rw-r--r--libguile/procs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libguile/procs.c b/libguile/procs.c
index 74cb86cce..fd7f3aa48 100644
--- a/libguile/procs.c
+++ b/libguile/procs.c
@@ -102,7 +102,7 @@ scm_c_make_subr_with_generic (const char *name,
long type, SCM (*fcn) (), SCM *gf)
{
SCM subr = scm_c_make_subr (name, type, fcn);
- SCM_SUBR_GENERIC (subr) = gf;
+ SCM_SET_SUBR_GENERIC_LOC (subr, gf);
return subr;
}