]> git.eshelyaron.com Git - emacs.git/commitdiff
(read_filtered_event, init_obarray): Don't use XFASTINT as an lvalue.
authorKarl Heuer <kwzh@gnu.org>
Tue, 4 Oct 1994 16:05:54 +0000 (16:05 +0000)
committerKarl Heuer <kwzh@gnu.org>
Tue, 4 Oct 1994 16:05:54 +0000 (16:05 +0000)
src/lread.c

index b8cf3bca4d97fae777399f1b641364eaed550db6..dce5912d03d0b31eecbf7e91354e7616e6ff8495 100644 (file)
@@ -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)));
+               XSETFASTINT (val, XINT (tem1) | XINT (Fcar (Fcdr (tem))));
            }
        }
          
@@ -1721,7 +1721,7 @@ init_obarray ()
   int hash;
   Lisp_Object *tem;
 
-  XFASTINT (oblength) = OBARRAY_SIZE;
+  XSETFASTINT (oblength, OBARRAY_SIZE);
 
   Qnil = Fmake_symbol (make_pure_string ("nil", 3));
   Vobarray = Fmake_vector (oblength, make_number (0));