aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKarl Heuer1994-10-04 16:05:54 +0000
committerKarl Heuer1994-10-04 16:05:54 +0000
commitbaf698660d690c2971ec6447e9eeceac95dc5f48 (patch)
treec8b6b26ae8110e5225f6a24b206cd909e86086cf /src
parent6e344130f07109e870f71f4b8b057aa1e357d21f (diff)
downloademacs-baf698660d690c2971ec6447e9eeceac95dc5f48.tar.gz
emacs-baf698660d690c2971ec6447e9eeceac95dc5f48.zip
(read_filtered_event, init_obarray): Don't use XFASTINT as an lvalue.
Diffstat (limited to 'src')
-rw-r--r--src/lread.c4
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));