diff options
| author | Nick Roberts | 2006-04-13 01:21:48 +0000 |
|---|---|---|
| committer | Nick Roberts | 2006-04-13 01:21:48 +0000 |
| commit | a526e8f5793f2707d59d991d84eca4a132da9716 (patch) | |
| tree | 3d3237e7fcc6f05c00452513c8e0a045420faeb9 /src | |
| parent | 5c24517a227ca7c21fce67213ca1ce97c54369a8 (diff) | |
| download | emacs-a526e8f5793f2707d59d991d84eca4a132da9716.tar.gz emacs-a526e8f5793f2707d59d991d84eca4a132da9716.zip | |
(note_mouse_highlight): Add help echo for dragging vertical line.
Diffstat (limited to 'src')
| -rw-r--r-- | src/xdisp.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/xdisp.c b/src/xdisp.c index 038ce5b03b9..075e05b0e13 100644 --- a/src/xdisp.c +++ b/src/xdisp.c | |||
| @@ -22358,7 +22358,10 @@ note_mouse_highlight (f, x, y) | |||
| 22358 | } | 22358 | } |
| 22359 | 22359 | ||
| 22360 | if (part == ON_VERTICAL_BORDER) | 22360 | if (part == ON_VERTICAL_BORDER) |
| 22361 | cursor = FRAME_X_OUTPUT (f)->horizontal_drag_cursor; | 22361 | { |
| 22362 | cursor = FRAME_X_OUTPUT (f)->horizontal_drag_cursor; | ||
| 22363 | help_echo_string = make_string ("drag-mouse-1: resize", 20); | ||
| 22364 | } | ||
| 22362 | else if (part == ON_LEFT_FRINGE || part == ON_RIGHT_FRINGE | 22365 | else if (part == ON_LEFT_FRINGE || part == ON_RIGHT_FRINGE |
| 22363 | || part == ON_SCROLL_BAR) | 22366 | || part == ON_SCROLL_BAR) |
| 22364 | cursor = FRAME_X_OUTPUT (f)->nontext_cursor; | 22367 | cursor = FRAME_X_OUTPUT (f)->nontext_cursor; |