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
baf69866
Commit
baf69866
authored
Oct 04, 1994
by
Karl Heuer
Browse files
(read_filtered_event, init_obarray): Don't use XFASTINT as an lvalue.
parent
6e344130
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
src/lread.c
src/lread.c
+2
-2
No files found.
src/lread.c
View file @
baf69866
...
...
@@ -266,7 +266,7 @@ read_filtered_event (no_switch_frame, ascii_required, error_nonascii)
/* Merge this symbol's modifier bits
with the ASCII equivalent of its basic code. */
if
(
!
NILP
(
tem1
))
XFASTINT
(
val
)
=
XINT
(
tem1
)
|
XINT
(
Fcar
(
Fcdr
(
tem
)));
X
SET
FASTINT
(
val
,
XINT
(
tem1
)
|
XINT
(
Fcar
(
Fcdr
(
tem
)))
)
;
}
}
...
...
@@ -1721,7 +1721,7 @@ init_obarray ()
int
hash
;
Lisp_Object
*
tem
;
XFASTINT
(
oblength
)
=
OBARRAY_SIZE
;
X
SET
FASTINT
(
oblength
,
OBARRAY_SIZE
)
;
Qnil
=
Fmake_symbol
(
make_pure_string
(
"nil"
,
3
));
Vobarray
=
Fmake_vector
(
oblength
,
make_number
(
0
));
...
...
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