diff src/bytecode.c @ 4957:db2db229ee82

merge
author Ben Wing <ben@xemacs.org>
date Thu, 28 Jan 2010 02:48:45 -0600
parents 19a72041c5ed 6772ce4d982b
children e813cf16c015
line wrap: on
line diff
--- a/src/bytecode.c	Thu Jan 28 01:15:10 2010 -0600
+++ b/src/bytecode.c	Thu Jan 28 02:48:45 2010 -0600
@@ -232,7 +232,7 @@
   Bquo 		 	= 0245,
   Brem 		 	= 0246,
   Bnumberp 	 	= 0247,
-  Bintegerp 	 	= 0250,
+  Bfixnump 	 	= 0250,	/* Was Bintegerp. */
 
   BRgoto 		= 0252,
   BRgotoifnil 		= 0253,
@@ -1076,12 +1076,8 @@
 #endif
 	  break;
 
-	case Bintegerp:
-#ifdef HAVE_BIGNUM
-	  TOP_LVALUE = INTEGERP (TOP) ? Qt : Qnil;
-#else
+	case Bfixnump:
 	  TOP_LVALUE = INTP (TOP) ? Qt : Qnil;
-#endif
 	  break;
 
 	case Beq: