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
7a70b397
Commit
7a70b397
authored
Sep 17, 1994
by
Richard M. Stallman
Browse files
(Fload): Use EMACS_INT.
parent
627a9502
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
src/lread.c
src/lread.c
+3
-2
No files found.
src/lread.c
View file @
7a70b397
...
...
@@ -434,7 +434,7 @@ Return t if file exists.")
So malloc a full-size pointer, and record the address of that pointer. */
ptr
=
(
FILE
**
)
xmalloc
(
sizeof
(
FILE
*
));
*
ptr
=
stream
;
XSET
(
lispstream
,
Lisp_Internal_Stream
,
(
int
)
ptr
);
XSET
(
lispstream
,
Lisp_Internal_Stream
,
(
EMACS_INT
)
ptr
);
record_unwind_protect
(
load_unwind
,
lispstream
);
record_unwind_protect
(
load_descriptor_unwind
,
load_descriptor_list
);
load_descriptor_list
...
...
@@ -1616,7 +1616,8 @@ oblookup (obarray, ptr, size)
register
char
*
ptr
;
register
int
size
;
{
int
hash
,
obsize
;
int
hash
;
int
obsize
;
register
Lisp_Object
tail
;
Lisp_Object
bucket
,
tem
;
...
...
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