aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/lread.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lread.c b/src/lread.c
index 3097a6b7c3e..bac5ad4f161 100644
--- a/src/lread.c
+++ b/src/lread.c
@@ -1416,7 +1416,8 @@ readevalloop (readcharfun, stream, sourcename, evalfun,
1416 } 1416 }
1417 1417
1418 build_load_history (sourcename, 1418 build_load_history (sourcename,
1419 stream || (start == BEG && end == Z)); 1419 stream || (INTEGERP (start) && INTEGERP (end)
1420 && XINT (start) == BEG && XINT (end) == Z));
1420 1421
1421 UNGCPRO; 1422 UNGCPRO;
1422 1423