diff options
| author | Martin Rudalics | 2014-02-05 19:37:36 +0100 |
|---|---|---|
| committer | Martin Rudalics | 2014-02-05 19:37:36 +0100 |
| commit | 81f9a6edde971d8ec7d31cab03a766feb6ae074b (patch) | |
| tree | 08c5abfc1714fbe75998ff61034054ca1ffb720c | |
| parent | 658272052d53ac372e8ff7434271b7a68cdb3af6 (diff) | |
| download | emacs-81f9a6edde971d8ec7d31cab03a766feb6ae074b.tar.gz emacs-81f9a6edde971d8ec7d31cab03a766feb6ae074b.zip | |
Fix last fix of note_mouse_highlight
| -rw-r--r-- | src/xdisp.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/xdisp.c b/src/xdisp.c index 755c061c43e..980e905b097 100644 --- a/src/xdisp.c +++ b/src/xdisp.c | |||
| @@ -28569,6 +28569,7 @@ note_mouse_highlight (struct frame *f, int x, int y) | |||
| 28569 | { | 28569 | { |
| 28570 | note_mode_line_or_margin_highlight (window, x, y, part); | 28570 | note_mode_line_or_margin_highlight (window, x, y, part); |
| 28571 | 28571 | ||
| 28572 | #ifdef HAVE_WINDOW_SYSTEM | ||
| 28572 | if (part == ON_LEFT_MARGIN || part == ON_RIGHT_MARGIN) | 28573 | if (part == ON_LEFT_MARGIN || part == ON_RIGHT_MARGIN) |
| 28573 | { | 28574 | { |
| 28574 | cursor = FRAME_X_OUTPUT (f)->nontext_cursor; | 28575 | cursor = FRAME_X_OUTPUT (f)->nontext_cursor; |
| @@ -28576,6 +28577,7 @@ note_mouse_highlight (struct frame *f, int x, int y) | |||
| 28576 | goto set_cursor; | 28577 | goto set_cursor; |
| 28577 | } | 28578 | } |
| 28578 | else | 28579 | else |
| 28580 | #endif | ||
| 28579 | return; | 28581 | return; |
| 28580 | } | 28582 | } |
| 28581 | 28583 | ||