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
16b5d424
Commit
16b5d424
authored
Mar 17, 2000
by
Gerd Moellmann
Browse files
(x_update_window_cursor): Don't update in frames
who are in the process of being deleted.
parent
5b620012
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
4 deletions
+14
-4
src/ChangeLog
src/ChangeLog
+5
-0
src/xterm.c
src/xterm.c
+9
-4
No files found.
src/ChangeLog
View file @
16b5d424
No preview for this file type
src/xterm.c
View file @
16b5d424
...
...
@@ -10496,10 +10496,15 @@ x_update_window_cursor (w, on)
struct window *w;
int on;
{
BLOCK_INPUT;
x_display_and_set_cursor (w, on, w->phys_cursor.hpos, w->phys_cursor.vpos,
w->phys_cursor.x, w->phys_cursor.y);
UNBLOCK_INPUT;
/* Don't update cursor in windows whose frame is in the process
of being deleted. */
if (w->current_matrix)
{
BLOCK_INPUT;
x_display_and_set_cursor (w, on, w->phys_cursor.hpos, w->phys_cursor.vpos,
w->phys_cursor.x, w->phys_cursor.y);
UNBLOCK_INPUT;
}
}
...
...
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