comparison src/regexp_nfa.c @ 5735:50dbef5e774a v7.4.212

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.
author Bram Moolenaar <bram@vim.org>
date Sun, 23 Mar 2014 15:13:05 +0100
parents dd7d1a86b311
children 4901a36479f2
comparison
equal deleted inserted replaced
5734:657ade71d395 5735:50dbef5e774a
6401 add_state = t->state->out; 6401 add_state = t->state->out;
6402 } 6402 }
6403 break; 6403 break;
6404 6404
6405 case NFA_VISUAL: 6405 case NFA_VISUAL:
6406 #ifdef FEAT_VISUAL
6407 result = reg_match_visual(); 6406 result = reg_match_visual();
6408 if (result) 6407 if (result)
6409 { 6408 {
6410 add_here = TRUE; 6409 add_here = TRUE;
6411 add_state = t->state->out; 6410 add_state = t->state->out;
6412 } 6411 }
6413 #endif
6414 break; 6412 break;
6415 6413
6416 case NFA_MOPEN1: 6414 case NFA_MOPEN1:
6417 case NFA_MOPEN2: 6415 case NFA_MOPEN2:
6418 case NFA_MOPEN3: 6416 case NFA_MOPEN3: