diff options
author | Mark H Weaver <mhw@netris.org> | 2012-01-30 11:02:29 -0500 |
---|---|---|
committer | Mark H Weaver <mhw@netris.org> | 2012-01-30 11:02:29 -0500 |
commit | 07c2ca0f0d56ebe515cb4ee9f1c3f4b3e824ca7b (patch) | |
tree | 119fbc9dca52f063b6376d55e6fd780eded56fc2 /libguile/eval.c | |
parent | 741b8a2300ef329cf5691a3c35b920df68f093e2 (diff) | |
download | guile-07c2ca0f0d56ebe515cb4ee9f1c3f4b3e824ca7b.tar.gz |
Rename scm_call_varargs -> scm_call
* libguile/eval.c, libguile/eval.h, doc/ref/api-evaluation.texi,
test-suite/standalone/test-loose-ends.c, NEWS: Rename
scm_call_varargs -> scm_call
Suggested by Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'libguile/eval.c')
-rw-r--r-- | libguile/eval.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libguile/eval.c b/libguile/eval.c index 70e303ab1..e52fa48e4 100644 --- a/libguile/eval.c +++ b/libguile/eval.c @@ -553,7 +553,7 @@ scm_call_n (SCM proc, SCM *argv, size_t nargs) } SCM -scm_call_varargs (SCM proc, ...) +scm_call (SCM proc, ...) { va_list argp; SCM *argv = NULL; |