core: Bugfix unread_byte.

* mes.c (unread_byte): Return SCM value instead of stray int.
This commit is contained in:
Jan Nieuwenhuizen 2016-12-20 22:28:29 +01:00
parent e97d99c03a
commit 23754e6f75
1 changed files with 2 additions and 1 deletions

3
mes.c
View File

@ -854,7 +854,8 @@ read_byte ()
SCM
unread_byte (SCM i)
{
return ungetchar (VALUE (i));
ungetchar (VALUE (i));
return i;
}
SCM