diff options
author | Ludovic Courtès <ludo@gnu.org> | 2009-02-16 01:00:49 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2009-03-02 00:20:43 +0100 |
commit | 54d14084e229f90b75475a866e3f458be30fa233 (patch) | |
tree | f9762726165af120436199f63abc84bf225005d8 /libguile/gsubr.h | |
parent | e20d7001c3f7150400169fecb0bf0eefdf122fe2 (diff) | |
download | guile-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.h | 2 |
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 */ |