|
Karsten Hopp |
ce7d1b |
To: vim_dev@googlegroups.com
|
|
Karsten Hopp |
ce7d1b |
Subject: Patch 7.3.1114
|
|
Karsten Hopp |
ce7d1b |
Fcc: outbox
|
|
Karsten Hopp |
ce7d1b |
From: Bram Moolenaar <Bram@moolenaar.net>
|
|
Karsten Hopp |
ce7d1b |
Mime-Version: 1.0
|
|
Karsten Hopp |
ce7d1b |
Content-Type: text/plain; charset=UTF-8
|
|
Karsten Hopp |
ce7d1b |
Content-Transfer-Encoding: 8bit
|
|
Karsten Hopp |
ce7d1b |
------------
|
|
Karsten Hopp |
ce7d1b |
|
|
Karsten Hopp |
ce7d1b |
Patch 7.3.1114 (after 7.3.1110)
|
|
Karsten Hopp |
ce7d1b |
Problem: Can't build without the syntax feature.
|
|
Karsten Hopp |
ce7d1b |
Solution: Add #ifdefs. (Erik Falor)
|
|
Karsten Hopp |
ce7d1b |
Files: src/regexp_nfa.c
|
|
Karsten Hopp |
ce7d1b |
|
|
Karsten Hopp |
ce7d1b |
|
|
Karsten Hopp |
ce7d1b |
*** ../vim-7.3.1113/src/regexp_nfa.c 2013-06-04 21:27:33.000000000 +0200
|
|
Karsten Hopp |
ce7d1b |
--- src/regexp_nfa.c 2013-06-04 21:39:30.000000000 +0200
|
|
Karsten Hopp |
ce7d1b |
***************
|
|
Karsten Hopp |
ce7d1b |
*** 3907,3913 ****
|
|
Karsten Hopp |
ce7d1b |
--- 3907,3915 ----
|
|
Karsten Hopp |
ce7d1b |
if (c > 0)
|
|
Karsten Hopp |
ce7d1b |
return 99;
|
|
Karsten Hopp |
ce7d1b |
if ((c >= NFA_MOPEN && c <= NFA_MOPEN9)
|
|
Karsten Hopp |
ce7d1b |
+ #ifdef FEAT_SYN_HL
|
|
Karsten Hopp |
ce7d1b |
|| (c >= NFA_ZOPEN && c <= NFA_ZOPEN9)
|
|
Karsten Hopp |
ce7d1b |
+ #endif
|
|
Karsten Hopp |
ce7d1b |
|| c == NFA_NOPEN)
|
|
Karsten Hopp |
ce7d1b |
return failure_chance(state->out, depth + 1);
|
|
Karsten Hopp |
ce7d1b |
/* something else */
|
|
Karsten Hopp |
ce7d1b |
***************
|
|
Karsten Hopp |
ce7d1b |
*** 4201,4207 ****
|
|
Karsten Hopp |
ce7d1b |
--- 4203,4211 ----
|
|
Karsten Hopp |
ce7d1b |
* Otherwise first do the one that has the highest chance
|
|
Karsten Hopp |
ce7d1b |
* of failing. */
|
|
Karsten Hopp |
ce7d1b |
if ((cout >= NFA_MCLOSE && cout <= NFA_MCLOSE9)
|
|
Karsten Hopp |
ce7d1b |
+ #ifdef FEAT_SYN_HL
|
|
Karsten Hopp |
ce7d1b |
|| (cout >= NFA_ZCLOSE && cout <= NFA_ZCLOSE9)
|
|
Karsten Hopp |
ce7d1b |
+ #endif
|
|
Karsten Hopp |
ce7d1b |
|| cout == NFA_NCLOSE
|
|
Karsten Hopp |
ce7d1b |
|| t->pim != NULL
|
|
Karsten Hopp |
ce7d1b |
|| (t->state->c != NFA_START_INVISIBLE_BEFORE
|
|
Karsten Hopp |
ce7d1b |
*** ../vim-7.3.1113/src/version.c 2013-06-04 21:27:33.000000000 +0200
|
|
Karsten Hopp |
ce7d1b |
--- src/version.c 2013-06-04 21:41:41.000000000 +0200
|
|
Karsten Hopp |
ce7d1b |
***************
|
|
Karsten Hopp |
ce7d1b |
*** 730,731 ****
|
|
Karsten Hopp |
ce7d1b |
--- 730,733 ----
|
|
Karsten Hopp |
ce7d1b |
{ /* Add new patch number below this line */
|
|
Karsten Hopp |
ce7d1b |
+ /**/
|
|
Karsten Hopp |
ce7d1b |
+ 1114,
|
|
Karsten Hopp |
ce7d1b |
/**/
|
|
Karsten Hopp |
ce7d1b |
|
|
Karsten Hopp |
ce7d1b |
--
|
|
Karsten Hopp |
ce7d1b |
From "know your smileys":
|
|
Karsten Hopp |
ce7d1b |
y:-) Bad toupee
|
|
Karsten Hopp |
ce7d1b |
|
|
Karsten Hopp |
ce7d1b |
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
|
Karsten Hopp |
ce7d1b |
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
|
Karsten Hopp |
ce7d1b |
\\\ an exciting new programming language -- http://www.Zimbu.org ///
|
|
Karsten Hopp |
ce7d1b |
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|