@@ -344,18 +344,8 @@ static void ex_mark(exarg_T *eap);
344344static char_u * uc_fun_cmd (void );
345345static char_u * find_ucmd (exarg_T * eap , char_u * p , int * full , expand_T * xp , int * compl );
346346#endif
347- #ifdef FEAT_EX_EXTRA
348347static void ex_startinsert (exarg_T * eap );
349348static void ex_stopinsert (exarg_T * eap );
350- #else
351- # define ex_normal ex_ni
352- # define ex_align ex_ni
353- # define ex_retab ex_ni
354- # define ex_startinsert ex_ni
355- # define ex_stopinsert ex_ni
356- # define ex_helptags ex_ni
357- # define ex_sort ex_ni
358- #endif
359349#ifdef FEAT_FIND_ID
360350static void ex_checkpath (exarg_T * eap );
361351static void ex_findpat (exarg_T * eap );
@@ -659,14 +649,12 @@ do_exmode(
659649 MSG (_ ("Entering Ex mode. Type \"visual\" to go to Normal mode." ));
660650 while (exmode_active )
661651 {
662- #ifdef FEAT_EX_EXTRA
663652 /* Check for a ":normal" command and no more characters left. */
664653 if (ex_normal_busy > 0 && typebuf .tb_len == 0 )
665654 {
666655 exmode_active = FALSE;
667656 break ;
668657 }
669- #endif
670658 msg_scroll = TRUE;
671659 need_wait_return = FALSE;
672660 ex_pressedreturn = FALSE;
@@ -9860,7 +9848,6 @@ update_topline_cursor(void)
98609848 update_curswant ();
98619849}
98629850
9863- #if defined(FEAT_EX_EXTRA ) || defined(PROTO )
98649851/*
98659852 * ":normal[!] {commands}": Execute normal mode commands.
98669853 */
@@ -10062,9 +10049,7 @@ ex_stopinsert(exarg_T *eap UNUSED)
1006210049 restart_edit = 0 ;
1006310050 stop_insert_mode = TRUE;
1006410051}
10065- #endif
1006610052
10067- #if defined(FEAT_EX_EXTRA ) || defined(FEAT_MENU ) || defined(PROTO )
1006810053/*
1006910054 * Execute normal mode command "cmd".
1007010055 * "remap" can be REMAP_NONE or REMAP_YES.
@@ -10076,10 +10061,7 @@ exec_normal_cmd(char_u *cmd, int remap, int silent)
1007610061 ins_typebuf (cmd , remap , 0 , TRUE, silent );
1007710062 exec_normal (FALSE);
1007810063}
10079- #endif
1008010064
10081- #if defined(FEAT_EX_EXTRA ) || defined(FEAT_MENU ) || defined(FEAT_EVAL ) \
10082- || defined(PROTO )
1008310065/*
1008410066 * Execute normal_cmd() until there is no typeahead left.
1008510067 */
@@ -10097,7 +10079,6 @@ exec_normal(int was_typed)
1009710079 normal_cmd (& oa , TRUE); /* execute a Normal mode cmd */
1009810080 }
1009910081}
10100- #endif
1010110082
1010210083#ifdef FEAT_FIND_ID
1010310084 static void
0 commit comments