0
0
mirror of https://github.com/vim/vim.git synced 2025-09-29 04:34:16 -04:00

updated for version 7.0-083

This commit is contained in:
Bram Moolenaar
2006-09-03 14:35:42 +00:00
parent ac48dbff43
commit 203335e4a9
3 changed files with 8 additions and 7 deletions

View File

@@ -3196,14 +3196,12 @@ prompt_for_number(mouse_used)
else
MSG_PUTS(_("Choice number (<Enter> cancels): "));
/* Set the state such that text can be selected/copied/pasted. */
/* Set the state such that text can be selected/copied/pasted and we still
* get mouse events. */
save_cmdline_row = cmdline_row;
cmdline_row = Rows - 1;
cmdline_row = 0;
save_State = State;
if (mouse_used == NULL)
State = CMDLINE;
else
State = NORMAL;
State = CMDLINE;
i = get_number(TRUE, mouse_used);
if (KeyTyped)