Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
c1ed1b20
Commit
c1ed1b20
authored
Nov 01, 2005
by
Stefan Monnier
Browse files
(readevalloop): Yet another int/Lisp_Object mixup (YAILOM).
parent
93eece98
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
src/lread.c
src/lread.c
+2
-1
No files found.
src/lread.c
View file @
c1ed1b20
...
...
@@ -1416,7 +1416,8 @@ readevalloop (readcharfun, stream, sourcename, evalfun,
}
build_load_history
(
sourcename
,
stream
||
(
start
==
BEG
&&
end
==
Z
));
stream
||
(
INTEGERP
(
start
)
&&
INTEGERP
(
end
)
&&
XINT
(
start
)
==
BEG
&&
XINT
(
end
)
==
Z
));
UNGCPRO
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment