[guile] Stop using deprecated aliases

The replacements should all work with Guile 1.8.0, which is the
oldest version we still aim to support.

Fixes #1624
This commit is contained in:
Olly Betts 2022-03-16 18:04:44 +13:00
commit 336de2f745
3 changed files with 11 additions and 11 deletions

View file

@ -19,6 +19,6 @@ SCM test_create()
SCM test_is_pointer(SCM val)
{
#define FUNC_NAME "test-is-pointer"
return SCM_BOOL(SWIG_IsPointer(val));
return scm_from_bool(SWIG_IsPointer(val));
#undef FUNC_NAME
}