changeset 66616:fdbdbec40f5a

(readevalloop): Yet another int/Lisp_Object mixup (YAILOM).
author Stefan Monnier <monnier@iro.umontreal.ca>
date Tue, 01 Nov 2005 19:46:16 +0000
parents 8a6d017601ce
children ed95f221960d
files src/lread.c
diffstat 1 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/lread.c	Tue Nov 01 17:35:33 2005 +0000
+++ b/src/lread.c	Tue Nov 01 19:46:16 2005 +0000
@@ -1416,7 +1416,8 @@
     }
 
   build_load_history (sourcename, 
-		      stream || (start == BEG && end == Z));
+		      stream || (INTEGERP (start) && INTEGERP (end)
+				 && XINT (start) == BEG && XINT (end) == Z));
 
   UNGCPRO;