# HG changeset patch # User Richard M. Stallman # Date 843279021 0 # Node ID 85a90affc238af3bf08abfb429973c00cc2d04c4 # Parent 012a1d850ee823be120bc0ff7dca87c502aff087 (read_minibuf): Use FRAME_LEFT_SCROLL_BAR_WIDTH to set the cursor position at the end. diff -r 012a1d850ee8 -r 85a90affc238 src/minibuf.c --- a/src/minibuf.c Sat Sep 21 03:31:53 1996 +0000 +++ b/src/minibuf.c Sat Sep 21 04:10:21 1996 +0000 @@ -333,7 +333,8 @@ >= XFASTINT (XWINDOW (minibuf_window)->top)) && !noninteractive) { - FRAME_CURSOR_X (selected_frame) = 0; + FRAME_CURSOR_X (selected_frame) + = FRAME_LEFT_SCROLL_BAR_WIDTH (selected_frame); update_frame (selected_frame, 1, 1); }