1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-10 14:00:21 +02:00

(SCM_MAKE_CHAR): Use scm_t_bits' instead of intptr_t'.

Thanks to Golubev I. N.
This commit is contained in:
Thien-Thi Nguyen 2001-09-26 03:14:15 +00:00
parent 523f81bad8
commit f5dd4f5419

View file

@ -53,7 +53,7 @@
*/
#define SCM_CHARP(x) (SCM_ITAG8(x) == scm_tc8_char)
#define SCM_CHAR(x) ((unsigned int)SCM_ITAG8_DATA(x))
#define SCM_MAKE_CHAR(x) SCM_MAKE_ITAG8((intptr_t) x, scm_tc8_char)
#define SCM_MAKE_CHAR(x) SCM_MAKE_ITAG8((scm_t_bits) x, scm_tc8_char)