Mercurial > emacs
changeset 9313:ed68c3822e4b
(read_filtered_event, init_obarray): Don't use XFASTINT as an lvalue.
author | Karl Heuer <kwzh@gnu.org> |
---|---|
date | Tue, 04 Oct 1994 16:05:54 +0000 |
parents | dfaf1d41e53d |
children | 2c681685646b |
files | src/lread.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/lread.c Tue Oct 04 16:05:05 1994 +0000 +++ b/src/lread.c Tue Oct 04 16:05:54 1994 +0000 @@ -266,7 +266,7 @@ /* 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 @@ 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));