0
0
mirror of https://github.com/vim/vim.git synced 2025-09-29 04:34:16 -04:00

updated for version 7.3.1107

Problem:    Compiler warnings for unused variables.
Solution:   Put the variables inside #ifdef.
This commit is contained in:
Bram Moolenaar
2013-06-03 19:41:06 +02:00
parent dd2ccdf6ea
commit 01d89dddfa
3 changed files with 7 additions and 1 deletions

View File

@@ -237,8 +237,10 @@ static int nfa_has_zend;
/* NFA regexp \1 .. \9 encountered. */
static int nfa_has_backref;
#ifdef FEAT_SYN_HL
/* NFA regexp has \z( ), set zsubexpr. */
static int nfa_has_zsubexpr;
#endif
/* Number of sub expressions actually being used during execution. 1 if only
* the whole match (subexpr 0) is used. */
@@ -420,7 +422,7 @@ nfa_recognize_char_class(start, end, extra_newl)
if (*p == '^')
{
not = TRUE;
p ++;
p++;
}
while (p < end)