1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-30 08:50:23 +02:00

* tags.h (scm_tags): Removed comma at end of last enumerator.

This commit is contained in:
Mikael Djurfeldt 1996-12-19 13:08:17 +00:00
parent 70d4fe698a
commit 4816f61591

View file

@ -428,7 +428,7 @@ typedef long SCM;
enum scm_tags
{
scm_tc8_char = 0xf4,
scm_tc8_iloc = 0xfc,
scm_tc8_iloc = 0xfc
};
#define SCM_ITAG8(X) ((int)(X) & 0xff)