1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-18 01:30:27 +02:00

Fixed some bugs that are due to the fact that SCM is a void* now.

Cleaned up a macro definition.  Thanks to Dale P. Smith for both of
these patches.
This commit is contained in:
Dirk Herrmann 2000-03-22 20:48:18 +00:00
parent 1ff2fa6e1a
commit f81e080b24
3 changed files with 22 additions and 11 deletions

View file

@ -263,7 +263,7 @@
SCM_SETCAR (x, \
scm_tc16_big \
| ((sign) ? SCM_BIGSIGNFLAG : 0) \
| (((v) + 0L) << 17)) \
| (((v) + 0L) << SCM_BIGSIZEFIELD))