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
c0098065
Commit
c0098065
authored
Nov 09, 2010
by
Eli Zaretskii
Browse files
xfns.c (x_real_positions): Fix declaration-after-statement problem.
parent
14121c52
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
+6
-2
src/ChangeLog
src/ChangeLog
+5
-0
src/xfns.c
src/xfns.c
+1
-2
No files found.
src/ChangeLog
View file @
c0098065
2010-11-09 Eli Zaretskii <eliz@gnu.org>
* xfns.c (x_real_positions): Fix declaration-after-statement
problem.
2010-11-05 Chong Yidong <cyd@stupidchicken.com>
* image.c (free_image): Don't garbage the frame here, since this
...
...
src/xfns.c
View file @
c0098065
...
...
@@ -645,11 +645,10 @@ x_real_positions (f, xptr, yptr)
{
int ign;
Window rootw;
long *fe = (long *)tmp_data;
XGetGeometry (FRAME_X_DISPLAY (f), win,
&rootw, &real_x, &real_y, &ign, &ign, &ign, &ign);
long *fe = (long *)tmp_data;
outer_x = -fe[0];
outer_y = -fe[2];
real_x -= fe[0];
...
...
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