# HG changeset patch # User Karl Heuer # Date 781290574 0 # Node ID 4e1048594e7fe008e5ecef2d883fdb0c36c887f9 # Parent 4db4768d58570e4938699116a6d6756771c5d782 (x_set_menu_bar_lines_1): Don't use XFASTINT as an lvalue. diff -r 4db4768d5857 -r 4e1048594e7f src/xfns.c --- a/src/xfns.c Tue Oct 04 17:04:39 1994 +0000 +++ b/src/xfns.c Tue Oct 04 17:09:34 1994 +0000 @@ -1206,8 +1206,8 @@ { struct window *w = XWINDOW (window); - XFASTINT (w->top) += n; - XFASTINT (w->height) -= n; + XSETFASTINT (w->top, XFASTINT (w->top) + n); + XSETFASTINT (w->height, XFASTINT (w->height) - n); /* Handle just the top child in a vertical split. */ if (!NILP (w->vchild))