diff options
Diffstat (limited to 'libguile/deprecated.h')
-rw-r--r-- | libguile/deprecated.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libguile/deprecated.h b/libguile/deprecated.h index f7b053c55..8ecd8b241 100644 --- a/libguile/deprecated.h +++ b/libguile/deprecated.h @@ -606,7 +606,8 @@ SCM_DEPRECATED scm_t_trampoline_2 scm_trampoline_2 (SCM proc); /* Deprecated 2010-01-05, use SCM_PRIMITIVE_P instead */ -#define scm_subr_p(x) (SCM_PRIMITIVE_P (x)) +SCM_DEPRECATED int scm_i_subr_p (SCM x); +#define scm_subr_p(x) (scm_i_subr_p (x)) |