diff options
| author | Jan D | 2015-05-23 12:28:54 +0200 |
|---|---|---|
| committer | Jan D | 2015-05-23 12:28:54 +0200 |
| commit | 6aaa489dc112f51f6045f79b37cb78dd513e398f (patch) | |
| tree | a34eb6ad435ab877848f7464374570549ca55ec5 /src/xterm.c | |
| parent | ee14727ce033bae3bc11af35e7843604e5a5e635 (diff) | |
| parent | 7ac84a2570e1268cc040fcd529508307b2b22c01 (diff) | |
| download | emacs-6aaa489dc112f51f6045f79b37cb78dd513e398f.tar.gz emacs-6aaa489dc112f51f6045f79b37cb78dd513e398f.zip | |
Merge branch 'master' into cairo
Diffstat (limited to 'src/xterm.c')
| -rw-r--r-- | src/xterm.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/xterm.c b/src/xterm.c index 4590e34fe8b..3734fbfee92 100644 --- a/src/xterm.c +++ b/src/xterm.c | |||
| @@ -7847,17 +7847,18 @@ handle_one_xevent (struct x_display_info *dpyinfo, | |||
| 7847 | 7847 | ||
| 7848 | f = any; | 7848 | f = any; |
| 7849 | 7849 | ||
| 7850 | #if ! defined (USE_GTK) | ||
| 7851 | /* If mouse-highlight is an integer, input clears out | 7850 | /* If mouse-highlight is an integer, input clears out |
| 7852 | mouse highlighting. */ | 7851 | mouse highlighting. */ |
| 7853 | if (!hlinfo->mouse_face_hidden && INTEGERP (Vmouse_highlight) | 7852 | if (!hlinfo->mouse_face_hidden && INTEGERP (Vmouse_highlight) |
| 7853 | #if ! defined (USE_GTK) | ||
| 7854 | && (f == 0 | 7854 | && (f == 0 |
| 7855 | || !EQ (f->tool_bar_window, hlinfo->mouse_face_window))) | 7855 | || !EQ (f->tool_bar_window, hlinfo->mouse_face_window)) |
| 7856 | #endif | ||
| 7857 | ) | ||
| 7856 | { | 7858 | { |
| 7857 | clear_mouse_face (hlinfo); | 7859 | clear_mouse_face (hlinfo); |
| 7858 | hlinfo->mouse_face_hidden = true; | 7860 | hlinfo->mouse_face_hidden = true; |
| 7859 | } | 7861 | } |
| 7860 | #endif | ||
| 7861 | 7862 | ||
| 7862 | #if defined USE_MOTIF && defined USE_TOOLKIT_SCROLL_BARS | 7863 | #if defined USE_MOTIF && defined USE_TOOLKIT_SCROLL_BARS |
| 7863 | if (f == 0) | 7864 | if (f == 0) |
| @@ -12256,7 +12257,7 @@ static struct redisplay_interface x_redisplay_interface = | |||
| 12256 | x_draw_window_cursor, | 12257 | x_draw_window_cursor, |
| 12257 | x_draw_vertical_window_border, | 12258 | x_draw_vertical_window_border, |
| 12258 | x_draw_window_divider, | 12259 | x_draw_window_divider, |
| 12259 | x_shift_glyphs_for_insert, /* Never called, se comment in function. */ | 12260 | x_shift_glyphs_for_insert, /* Never called; see comment in function. */ |
| 12260 | x_show_hourglass, | 12261 | x_show_hourglass, |
| 12261 | x_hide_hourglass | 12262 | x_hide_hourglass |
| 12262 | }; | 12263 | }; |