From: Nick Roberts Date: Thu, 13 Apr 2006 01:21:48 +0000 (+0000) Subject: (note_mouse_highlight): Add help echo for dragging vertical line. X-Git-Tag: emacs-pretest-22.0.90~3170 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=a526e8f5793f2707d59d991d84eca4a132da9716;p=emacs.git (note_mouse_highlight): Add help echo for dragging vertical line. --- 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) } if (part == ON_VERTICAL_BORDER) - cursor = FRAME_X_OUTPUT (f)->horizontal_drag_cursor; + { + cursor = FRAME_X_OUTPUT (f)->horizontal_drag_cursor; + help_echo_string = make_string ("drag-mouse-1: resize", 20); + } else if (part == ON_LEFT_FRINGE || part == ON_RIGHT_FRINGE || part == ON_SCROLL_BAR) cursor = FRAME_X_OUTPUT (f)->nontext_cursor;