# HG changeset patch # User Richard M. Stallman # Date 767839604 0 # Node ID a701bffa0f9df40c45e87e5f59b60c5e14001ac3 # Parent b7025b4bf65992a9a8f911f36a797bb6ecb02d8c (x_calc_absolute_position): Use size_hint_flags. New FLAGS arg deleted. Callers changed. diff -r b7025b4bf659 -r a701bffa0f9d src/xterm.c --- a/src/xterm.c Mon May 02 00:45:44 1994 +0000 +++ b/src/xterm.c Mon May 02 00:46:44 1994 +0000 @@ -5106,13 +5106,13 @@ } #endif /* ! defined (HAVE_X11) */ -x_calc_absolute_position (f, flags) +x_calc_absolute_position (f) struct frame *f; - int flags; { #ifdef HAVE_X11 Window win, child; int win_x = 0, win_y = 0; + int flags = f->display.x->size_hint_flags; /* Find the position of the outside upper-left corner of the inner window, with respect to the outer window. */ @@ -5169,7 +5169,7 @@ { f->display.x->top_pos = yoff; f->display.x->left_pos = xoff; - x_calc_absolute_position (f, 0); + x_calc_absolute_position (f); BLOCK_INPUT; #ifdef USE_X_TOOLKIT