guile-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

guile/guile-core/libguile tags.h


From: Marius Vollmer
Subject: guile/guile-core/libguile tags.h
Date: Sun, 22 Jul 2001 11:30:08 -0700

CVSROOT:        /cvs
Module name:    guile
Changes by:     Marius Vollmer <address@hidden> 01/07/22 11:30:08

Modified files:
        guile-core/libguile: tags.h 

Log message:
        * 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.

CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/guile/guile-core/libguile/tags.h.diff?cvsroot=OldCVS&tr1=1.83&tr2=1.84&r1=text&r2=text

Patches:
Index: guile/guile-core/libguile/tags.h
diff -u guile/guile-core/libguile/tags.h:1.83 
guile/guile-core/libguile/tags.h:1.84
--- guile/guile-core/libguile/tags.h:1.83       Mon Jul  9 00:36:48 2001
+++ guile/guile-core/libguile/tags.h    Sun Jul 22 11:30:08 2001
@@ -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 @@
  * 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))
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]