diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/lread.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lread.c b/src/lread.c index b8cf3bca4d9..dce5912d03d 100644 --- a/src/lread.c +++ b/src/lread.c | |||
| @@ -266,7 +266,7 @@ read_filtered_event (no_switch_frame, ascii_required, error_nonascii) | |||
| 266 | /* Merge this symbol's modifier bits | 266 | /* Merge this symbol's modifier bits |
| 267 | with the ASCII equivalent of its basic code. */ | 267 | with the ASCII equivalent of its basic code. */ |
| 268 | if (!NILP (tem1)) | 268 | if (!NILP (tem1)) |
| 269 | XFASTINT (val) = XINT (tem1) | XINT (Fcar (Fcdr (tem))); | 269 | XSETFASTINT (val, XINT (tem1) | XINT (Fcar (Fcdr (tem)))); |
| 270 | } | 270 | } |
| 271 | } | 271 | } |
| 272 | 272 | ||
| @@ -1721,7 +1721,7 @@ init_obarray () | |||
| 1721 | int hash; | 1721 | int hash; |
| 1722 | Lisp_Object *tem; | 1722 | Lisp_Object *tem; |
| 1723 | 1723 | ||
| 1724 | XFASTINT (oblength) = OBARRAY_SIZE; | 1724 | XSETFASTINT (oblength, OBARRAY_SIZE); |
| 1725 | 1725 | ||
| 1726 | Qnil = Fmake_symbol (make_pure_string ("nil", 3)); | 1726 | Qnil = Fmake_symbol (make_pure_string ("nil", 3)); |
| 1727 | Vobarray = Fmake_vector (oblength, make_number (0)); | 1727 | Vobarray = Fmake_vector (oblength, make_number (0)); |