Mercurial > emacs
changeset 9326:bcf42f7e049a
(compute_char_face): Don't use XFASTINT as an lvalue.
author | Karl Heuer <kwzh@gnu.org> |
---|---|
date | Tue, 04 Oct 1994 16:45:39 +0000 |
parents | 6f07f6dfe1ee |
children | b3398cf56fba |
files | src/xfaces.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/xfaces.c Tue Oct 04 16:44:49 1994 +0000 +++ b/src/xfaces.c Tue Oct 04 16:45:39 1994 +0000 @@ -813,7 +813,7 @@ if (pos < region_beg && region_beg < endpos) endpos = region_beg; - XFASTINT (position) = pos; + XSETFASTINT (position, pos); if (mouse) propname = Qmouse_face; @@ -825,7 +825,7 @@ { Lisp_Object limit1, end; - XFASTINT (limit1) = (limit < endpos ? limit : endpos); + XSETFASTINT (limit1, (limit < endpos ? limit : endpos)); end = Fnext_single_property_change (position, propname, w->buffer, limit1); if (INTEGERP (end)) endpos = XINT (end);