1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-29 16:41:45 -08:00

(read_minibuf): Use FRAME_LEFT_SCROLL_BAR_WIDTH

to set the cursor position at the end.
This commit is contained in:
Richard M. Stallman 1996-09-21 04:10:21 +00:00
parent 8516ba9afe
commit 85462999a5

View file

@ -333,7 +333,8 @@ read_minibuf (map, initial, prompt, backup_n, expflag, histvar, histpos)
>= 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);
}