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
cf1474a2
Commit
cf1474a2
authored
Mar 24, 2006
by
Kim F. Storm
Browse files
(XTread_socket): Don't let key-press clear mouse face
on in toolbar window if mouse-highlight is an integer.
parent
95d8aa28
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
src/ChangeLog
src/ChangeLog
+0
-1
src/macterm.c
src/macterm.c
+2
-1
No files found.
src/ChangeLog
View file @
cf1474a2
...
...
@@ -2,7 +2,6 @@
* xterm.c (handle_one_xevent):
* w32term.c (w32_read_socket):
* msdos.c (dos_rawgetc):
* macterm.c (XTread_socket): Don't let key-press clear mouse face
on in toolbar window if mouse-highlight is an integer.
...
...
src/macterm.c
View file @
cf1474a2
...
...
@@ -10455,7 +10455,8 @@ XTread_socket (sd, expected, hold_quit)
ObscureCursor ();
if (!dpyinfo->mouse_face_hidden && INTEGERP (Vmouse_highlight))
if (!dpyinfo->mouse_face_hidden && INTEGERP (Vmouse_highlight)
&& !EQ (f->tool_bar_window, dpyinfo->mouse_face_window))
{
clear_mouse_face (dpyinfo);
dpyinfo->mouse_face_hidden = 1;
...
...
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