1
0
forked from aniani/vim

updated for version 7.4.212

Problem:    Now that the +visual feature is always enabled the #ifdefs for it
            are not useful.
Solution:   Remove the checks for FEAT_VISUAL.
This commit is contained in:
Bram Moolenaar
2014-03-23 15:13:05 +01:00
parent a687837516
commit f7ff6e85e8
39 changed files with 121 additions and 858 deletions

View File

@@ -4179,9 +4179,8 @@ reg_prev_class()
- (*mb_head_off)(regline, reginput - 1), reg_buf);
return -1;
}
#endif
#ifdef FEAT_VISUAL
static int reg_match_visual __ARGS((void));
/*
@@ -4258,7 +4257,6 @@ reg_match_visual()
}
return TRUE;
}
#endif
#define ADVANCE_REGINPUT() mb_ptr_adv(reginput)
@@ -4440,9 +4438,7 @@ regmatch(scan)
break;
case RE_VISUAL:
#ifdef FEAT_VISUAL
if (!reg_match_visual())
#endif
status = RA_NOMATCH;
break;