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
cc8549df
Commit
cc8549df
authored
May 27, 2003
by
Kim F. Storm
Browse files
(expose_window): Fix error in calculation of
window relative coordinates of area to redisplay.
parent
1963c428
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
src/xdisp.c
src/xdisp.c
+2
-2
No files found.
src/xdisp.c
View file @
cc8549df
...
...
@@ -20283,8 +20283,8 @@ expose_window (w, fr)
r.x, r.y, r.width, r.height));
/* Convert to window coordinates. */
r.x =
FRAME_TO_WINDOW_PIXEL_X (w, r.x
);
r.y =
FRAME_TO_WINDOW_PIXEL_Y (w, r.y
);
r.x
-
=
WINDOW_LEFT_EDGE_X (w
);
r.y
-
=
WINDOW_TOP_EDGE_Y (w
);
/* Turn off the cursor. */
if (!w->pseudo_window_p
...
...
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