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
845e9d85
Commit
845e9d85
authored
Jun 24, 1996
by
Richard M. Stallman
Browse files
(x_real_positions): Don't call x_uncatch_errors twice.
parent
82d593eb
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
src/xfns.c
src/xfns.c
+4
-3
No files found.
src/xfns.c
View file @
845e9d85
...
...
@@ -1003,13 +1003,14 @@ x_real_positions (f, xptr, yptr)
If so, we get an error in XTranslateCoordinates.
Detect that and try the whole thing over. */
if
(
!
x_had_errors_p
(
FRAME_X_DISPLAY
(
f
)))
break
;
{
x_uncatch_errors
(
FRAME_X_DISPLAY
(
f
));
break
;
}
x_uncatch_errors
(
FRAME_X_DISPLAY
(
f
));
}
x_uncatch_errors
(
FRAME_X_DISPLAY
(
f
));
*
xptr
=
f
->
output_data
.
x
->
left_pos
-
win_x
;
*
yptr
=
f
->
output_data
.
x
->
top_pos
-
win_y
;
}
...
...
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