# HG changeset patch # User Nick Roberts # Date 1144891308 0 # Node ID 585153d158468b0af70fb6cad94c18ad41bb21ee # Parent 3e456faa99aa29abe6e863be0b5cdf85b9979b3a (note_mouse_highlight): Add help echo for dragging vertical line. diff -r 3e456faa99aa -r 585153d15846 src/xdisp.c --- a/src/xdisp.c Thu Apr 13 01:19:56 2006 +0000 +++ b/src/xdisp.c Thu Apr 13 01:21:48 2006 +0000 @@ -22358,7 +22358,10 @@ } 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;