1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-20 19:50:24 +02:00

* gscm.c (gscm_portprint_obj): scm_iprin1 --> scm_prin1

This commit is contained in:
Mikael Djurfeldt 1996-09-12 23:44:12 +00:00
parent 439791ec7b
commit c88edfaf17

View file

@ -81,7 +81,7 @@ gscm_portprint_obj (port, obj)
SCM obj;
#endif
{
scm_iprin1 (obj, port, 1);
scm_prin1 (obj, port, 1);
return GSCM_OK;
}