Mercurial > emacs
diff src/minibuf.c @ 16265:85a90affc238
(read_minibuf): Use FRAME_LEFT_SCROLL_BAR_WIDTH
to set the cursor position at the end.
| author | Richard M. Stallman <rms@gnu.org> |
|---|---|
| date | Sat, 21 Sep 1996 04:10:21 +0000 |
| parents | 4c9450bfc4db |
| children | 2602c284eb11 |
line wrap: on
line diff
--- 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); }
