diff options
Diffstat (limited to 'libguile')
-rw-r--r-- | libguile/tags.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/libguile/tags.h b/libguile/tags.h index 234d4c77c..9e6943ed0 100644 --- a/libguile/tags.h +++ b/libguile/tags.h @@ -3,7 +3,7 @@ #ifndef SCM_TAGS_H #define SCM_TAGS_H -/* Copyright (C) 1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2008,2009,2010,2011,2012 +/* Copyright (C) 1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2008,2009,2010,2011,2012,2013 * Free Software Foundation, Inc. * * This library is free software; you can redistribute it and/or @@ -402,6 +402,9 @@ typedef union SCM { struct { scm_t_bits n; } n; } SCM; #define SCM_HAS_TYP7(x, tag) (SCM_HAS_HEAP_TYPE (x, SCM_TYP7, tag)) #define SCM_HAS_TYP7S(x, tag) (SCM_HAS_HEAP_TYPE (x, SCM_TYP7S, tag)) +/* If you change these numbers, change them also in (system vm + assembler). */ + #define scm_tc7_symbol 5 #define scm_tc7_variable 7 |