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
0d6239f1
Commit
0d6239f1
authored
Oct 26, 2002
by
Kim F. Storm
Browse files
(IT_note_mouse_highlight): Don't use mouse-face if hidden.
parent
1b7334a4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
src/msdos.c
src/msdos.c
+4
-2
No files found.
src/msdos.c
View file @
0d6239f1
...
...
@@ -1673,7 +1673,8 @@ IT_note_mouse_highlight (struct frame *f, int x, int y)
dpyinfo
->
mouse_face_window
=
window
;
dpyinfo
->
mouse_face_face_id
=
face_at_buffer_position
(
w
,
pos
,
0
,
0
,
&
ignore
,
pos
+
1
,
1
);
&
ignore
,
pos
+
1
,
!
dpyinfo
->
mouse_face_hidden
);
/* Display it as active. */
show_mouse_face
(
dpyinfo
,
1
);
...
...
@@ -1707,7 +1708,8 @@ IT_note_mouse_highlight (struct frame *f, int x, int y)
dpyinfo
->
mouse_face_window
=
window
;
dpyinfo
->
mouse_face_face_id
=
face_at_buffer_position
(
w
,
pos
,
0
,
0
,
&
ignore
,
pos
+
1
,
1
);
&
ignore
,
pos
+
1
,
!
dpyinfo
->
mouse_face_hidden
);
/* Display it as active. */
show_mouse_face
(
dpyinfo
,
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