diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-01-31 14:55:40 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-01-31 14:55:40 +0100 |
commit | e2c3810c2ae290bbc2cba18eb47cc2d44e4b9797 (patch) | |
tree | d925e3d106d6ef1cc76cd5465f8971d8fac2db72 /src/ex_cmds2.c | |
parent | 3c124e3ac81521ae1e7e4a9cb9597ab754b92429 (diff) | |
download | vim-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/ex_cmds2.c')
-rw-r--r-- | src/ex_cmds2.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/ex_cmds2.c b/src/ex_cmds2.c index c1adea4c7..2651770a6 100644 --- a/src/ex_cmds2.c +++ b/src/ex_cmds2.c @@ -90,9 +90,7 @@ do_debug(char_u *cmd) tasave_T typeaheadbuf; int typeahead_saved = FALSE; int save_ignore_script = 0; -# ifdef FEAT_EX_EXTRA int save_ex_normal_busy; -# endif int n; char_u *cmdline = NULL; char_u *p; @@ -161,10 +159,8 @@ do_debug(char_u *cmd) * with the commands being executed. Reset "ex_normal_busy" to avoid * the side effects of using ":normal". Save the stuff buffer and make * it empty. Set ignore_script to avoid reading from script input. */ -# ifdef FEAT_EX_EXTRA save_ex_normal_busy = ex_normal_busy; ex_normal_busy = 0; -# endif if (!debug_greedy) { save_typeahead(&typeaheadbuf); @@ -180,9 +176,7 @@ do_debug(char_u *cmd) restore_typeahead(&typeaheadbuf); ignore_script = save_ignore_script; } -# ifdef FEAT_EX_EXTRA ex_normal_busy = save_ex_normal_busy; -# endif cmdline_row = msg_row; msg_starthere(); |