diff options
author | Mark H Weaver <mhw@netris.org> | 2019-04-15 00:17:21 -0400 |
---|---|---|
committer | Mark H Weaver <mhw@netris.org> | 2019-04-16 16:54:55 -0400 |
commit | 275c96dd1fbc392e43423e91f08d2cf2fcc538a1 (patch) | |
tree | ae650ee1204219d9a733b5f8b5de7553ebfcccf4 /libguile | |
parent | 94230d27e0bebf9e9bdb7ae9178b13732791d706 (diff) |
Remove vestigial comment in tags.h.
* libguile/tags.h: Remove a vestigial comment which seems to have been
separated from its associated code long ago.
Diffstat (limited to 'libguile')
-rw-r--r-- | libguile/tags.h | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/libguile/tags.h b/libguile/tags.h index 3a01a1587..9977729d8 100644 --- a/libguile/tags.h +++ b/libguile/tags.h @@ -3,8 +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,2013,2014,2015 - * Free Software Foundation, Inc. +/* Copyright (C) 1995-2004, 2008-2015 Free Software Foundation, Inc. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public License @@ -353,10 +352,6 @@ typedef union SCM { struct { scm_t_bits n; } n; } SCM; #define SCM_NIMP(x) (!SCM_IMP (x)) #define SCM_HEAP_OBJECT_P(x) (SCM_NIMP (x)) -/* Checking if a SCM variable holds an immediate integer: See numbers.h for - * the definition of the following macros: SCM_I_FIXNUM_BIT, - * SCM_MOST_POSITIVE_FIXNUM, SCM_I_INUMP, SCM_I_MAKINUM, SCM_I_INUM. */ - /* Checking if a SCM variable holds a pair (for historical reasons, in Guile * also known as a cons-cell): This is done by first checking that the SCM * variable holds a heap object, and second, by checking that tc1==0 holds |