0
0
mirror of https://github.com/vim/vim.git synced 2025-09-23 03:43:49 -04:00

updated for version 7.0036

This commit is contained in:
Bram Moolenaar
2005-01-09 21:16:21 +00:00
parent 6cc1619799
commit a40c500a4c
6 changed files with 17 additions and 6 deletions

View File

@@ -8085,6 +8085,11 @@ ex_normal(eap)
ex_startinsert(eap)
exarg_T *eap;
{
/* Ignore the command when already in Insert mode. Inserting an
* expression register that invokes a function can do this. */
if (State & INSERT)
return;
if (eap->forceit)
{
coladvance((colnr_T)MAXCOL);