summaryrefslogtreecommitdiff
path: root/src/normal.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2016-01-31 14:55:40 +0100
committerBram Moolenaar <Bram@vim.org>2016-01-31 14:55:40 +0100
commite2c3810c2ae290bbc2cba18eb47cc2d44e4b9797 (patch)
treed925e3d106d6ef1cc76cd5465f8971d8fac2db72 /src/normal.c
parent3c124e3ac81521ae1e7e4a9cb9597ab754b92429 (diff)
downloadvim-git-e2c3810c2ae290bbc2cba18eb47cc2d44e4b9797.tar.gz
patch 7.4.1222v7.4.1222
Problem: ":normal" command and others missing in tiny build. Solution: Graduate FEAT_EX_EXTRA.
Diffstat (limited to 'src/normal.c')
-rw-r--r--src/normal.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/normal.c b/src/normal.c
index 2aa068d99..d4b4b70fc 100644
--- a/src/normal.c
+++ b/src/normal.c
@@ -8924,11 +8924,7 @@ nv_esc(cmdarg_T *cap)
/* A CTRL-C is often used at the start of a menu. When 'insertmode' is
* set return to Insert mode afterwards. */
- if (restart_edit == 0 && goto_im()
-#ifdef FEAT_EX_EXTRA
- && ex_normal_busy == 0
-#endif
- )
+ if (restart_edit == 0 && goto_im() && ex_normal_busy == 0)
restart_edit = 'a';
}