Mercurial > vim
comparison src/misc1.c @ 375:f14cbd913415 v7.0097
updated for version 7.0097
author | vimboss |
---|---|
date | Wed, 29 Jun 2005 22:40:58 +0000 |
parents | 575dacb554d8 |
children | 06234af3a8b7 |
comparison
equal
deleted
inserted
replaced
374:575dacb554d8 | 375:f14cbd913415 |
---|---|
3160 int i; | 3160 int i; |
3161 int save_cmdline_row; | 3161 int save_cmdline_row; |
3162 int save_State; | 3162 int save_State; |
3163 | 3163 |
3164 /* When using ":silent" assume that <CR> was entered. */ | 3164 /* When using ":silent" assume that <CR> was entered. */ |
3165 MSG_PUTS(_("Choice number (<Enter> cancels): ")); | 3165 if (mouse_used != NULL) |
3166 MSG_PUTS(_("Type number or click with mouse (<Enter> cancels): ")); | |
3167 else | |
3168 MSG_PUTS(_("Choice number (<Enter> cancels): ")); | |
3166 | 3169 |
3167 /* Set the state such that text can be selected/copied/pasted. */ | 3170 /* Set the state such that text can be selected/copied/pasted. */ |
3168 save_cmdline_row = cmdline_row; | 3171 save_cmdline_row = cmdline_row; |
3169 cmdline_row = Rows - 1; | 3172 cmdline_row = Rows - 1; |
3170 save_State = State; | 3173 save_State = State; |