Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
e3c7c6a5
Commit
e3c7c6a5
authored
Jan 13, 2004
by
Kenichi Handa
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(x_set_mouse_face_gc): Call FACE_FOR_CHAR with POS and OBJECT args.
parent
779c6fb6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
src/xterm.c
src/xterm.c
+2
-2
No files found.
src/xterm.c
View file @
e3c7c6a5
...
...
@@ -1016,9 +1016,9 @@ x_set_mouse_face_gc (s)
face = FACE_FROM_ID (s->f, MOUSE_FACE_ID);
if (s->first_glyph->type == CHAR_GLYPH)
face_id = FACE_FOR_CHAR (s->f, face, s->first_glyph->u.ch);
face_id = FACE_FOR_CHAR (s->f, face, s->first_glyph->u.ch
, -1, Qnil
);
else
face_id = FACE_FOR_CHAR (s->f, face, 0);
face_id = FACE_FOR_CHAR (s->f, face, 0
, -1, Qnil
);
s->face = FACE_FROM_ID (s->f, face_id);
PREPARE_FACE_FOR_DISPLAY (s->f, s->face);
...
...
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