summaryrefslogtreecommitdiff
path: root/libguile/gsubr.h
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2009-02-16 01:00:49 +0100
committerLudovic Courtès <ludo@gnu.org>2009-03-02 00:20:43 +0100
commit54d14084e229f90b75475a866e3f458be30fa233 (patch)
treef9762726165af120436199f63abc84bf225005d8 /libguile/gsubr.h
parente20d7001c3f7150400169fecb0bf0eefdf122fe2 (diff)
downloadguile-54d14084e229f90b75475a866e3f458be30fa233.tar.gz
Change `scm_gsubr_apply ()' to take the gsubr as its first argument.
* libguile/gsubr.c (scm_gsubr_apply): Make SELF the first argument instead of the first element of ARGS. * libguile/gsubr.h: Update. * libguile/eval.i.c (CEVAL): Update.
Diffstat (limited to 'libguile/gsubr.h')
-rw-r--r--libguile/gsubr.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libguile/gsubr.h b/libguile/gsubr.h
index ea4843696..9c9b7d96c 100644
--- a/libguile/gsubr.h
+++ b/libguile/gsubr.h
@@ -48,7 +48,7 @@ SCM_API SCM scm_c_define_gsubr_with_generic (const char *name,
int req, int opt, int rst,
SCM (*fcn) (), SCM *gf);
-SCM_API SCM scm_gsubr_apply (SCM args);
+SCM_API SCM scm_gsubr_apply (SCM proc, SCM args);
SCM_INTERNAL void scm_init_gsubr (void);
#endif /* SCM_GSUBR_H */