mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-05-28 16:00:22 +02:00
* tags.h: Include inttypes.h when we have it.
* tags.h (SCM_UNBOUND): Make it the 34th isym/iflag, the 33th slot is taken by the new SCM_IM_CALL_WITH_VALUES. * print.c (scm_isymnames): Update table accordingly.
This commit is contained in:
parent
f4d1173bb3
commit
cda36c2356
1 changed files with 5 additions and 1 deletions
|
@ -54,6 +54,10 @@
|
|||
#include <stdint.h>
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_INTTYPES_H
|
||||
#include <inttypes.h>
|
||||
#endif
|
||||
|
||||
|
||||
|
||||
/* In the beginning was the Word:
|
||||
|
@ -487,7 +491,7 @@ extern char *scm_isymnames[]; /* defined in print.c */
|
|||
* used instead. It is not ideal to let this kind of unique and
|
||||
* strange values loose on the Scheme level.
|
||||
*/
|
||||
#define SCM_UNBOUND SCM_MAKIFLAG (33)
|
||||
#define SCM_UNBOUND SCM_MAKIFLAG (34)
|
||||
|
||||
#define SCM_UNBNDP(x) (SCM_EQ_P ((x), SCM_UNDEFINED))
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue