Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
43bca5d5
Commit
43bca5d5
authored
May 02, 1994
by
Richard M. Stallman
Browse files
(x_calc_absolute_position): Use size_hint_flags.
New FLAGS arg deleted. Callers changed.
parent
38d22040
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
src/xterm.c
src/xterm.c
+3
-3
No files found.
src/xterm.c
View file @
43bca5d5
...
...
@@ -5106,13 +5106,13 @@ x_new_font (f, newname)
}
#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 @@ x_set_offset (f, xoff, yoff, change_gravity)
{
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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment