summaryrefslogtreecommitdiff
path: root/libguile/gsubr.c
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2009-02-17 23:29:44 +0100
committerLudovic Courtès <ludo@gnu.org>2009-03-02 00:20:44 +0100
commita5f83fd21d29d07ddb005962b37412b1e9aa5ffa (patch)
tree4481499de5a711af36a503665d59fcb27942eb93 /libguile/gsubr.c
parent54d14084e229f90b75475a866e3f458be30fa233 (diff)
downloadguile-a5f83fd21d29d07ddb005962b37412b1e9aa5ffa.tar.gz
Mark `scm_gsubr_apply ()' as internal.
* libguile/gsubr.h (scm_gsubr_apply): Renamed to... (scm_i_gsubr_apply): this. Marked as `SCM_INTERNAL'. Callers updated.
Diffstat (limited to 'libguile/gsubr.c')
-rw-r--r--libguile/gsubr.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libguile/gsubr.c b/libguile/gsubr.c
index cc9bc39a5..c6a1c5d2c 100644
--- a/libguile/gsubr.c
+++ b/libguile/gsubr.c
@@ -179,8 +179,8 @@ scm_c_define_gsubr_with_generic (const char *name,
SCM
-scm_gsubr_apply (SCM self, SCM args)
-#define FUNC_NAME "scm_gsubr_apply"
+scm_i_gsubr_apply (SCM self, SCM args)
+#define FUNC_NAME "scm_i_gsubr_apply"
{
SCM (*fcn)() = SCM_SUBRF (self);
SCM v[SCM_GSUBR_MAX];