Remove vestigial comment in tags.h.
authorMark H Weaver <mhw@netris.org>
Mon, 15 Apr 2019 04:17:21 +0000 (00:17 -0400)
committerMark H Weaver <mhw@netris.org>
Tue, 16 Apr 2019 20:54:55 +0000 (16:54 -0400)
* libguile/tags.h: Remove a vestigial comment which seems to have been
separated from its associated code long ago.

libguile/tags.h

index 3a01a1587cb6ba8767ee7c61bae1f91061de4867..9977729d81c202bd695ae2817cc7a4122d1fac72 100644 (file)
@@ -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