|
Karsten Hopp |
020142 |
To: vim_dev@googlegroups.com
|
|
Karsten Hopp |
020142 |
Subject: Patch 7.3.1152
|
|
Karsten Hopp |
020142 |
Fcc: outbox
|
|
Karsten Hopp |
020142 |
From: Bram Moolenaar <Bram@moolenaar.net>
|
|
Karsten Hopp |
020142 |
Mime-Version: 1.0
|
|
Karsten Hopp |
020142 |
Content-Type: text/plain; charset=UTF-8
|
|
Karsten Hopp |
020142 |
Content-Transfer-Encoding: 8bit
|
|
Karsten Hopp |
020142 |
------------
|
|
Karsten Hopp |
020142 |
|
|
Karsten Hopp |
020142 |
Patch 7.3.1152
|
|
Karsten Hopp |
020142 |
Problem: In tiny build ireg_icombine is undefined. (Tony Mechelynck)
|
|
Karsten Hopp |
020142 |
Solution: Add #ifdef.
|
|
Karsten Hopp |
020142 |
Files: src/regexp_nfa.c
|
|
Karsten Hopp |
020142 |
|
|
Karsten Hopp |
020142 |
|
|
Karsten Hopp |
020142 |
*** ../vim-7.3.1151/src/regexp_nfa.c 2013-06-08 23:26:10.000000000 +0200
|
|
Karsten Hopp |
020142 |
--- src/regexp_nfa.c 2013-06-08 23:29:22.000000000 +0200
|
|
Karsten Hopp |
020142 |
***************
|
|
Karsten Hopp |
020142 |
*** 6198,6204 ****
|
|
Karsten Hopp |
020142 |
|
|
Karsten Hopp |
020142 |
/* If match_text is set it contains the full text that must match.
|
|
Karsten Hopp |
020142 |
* Nothing else to try. Doesn't handle combining chars well. */
|
|
Karsten Hopp |
020142 |
! if (prog->match_text != NULL && !ireg_icombine)
|
|
Karsten Hopp |
020142 |
return find_match_text(col, prog->regstart, prog->match_text);
|
|
Karsten Hopp |
020142 |
}
|
|
Karsten Hopp |
020142 |
|
|
Karsten Hopp |
020142 |
--- 6198,6208 ----
|
|
Karsten Hopp |
020142 |
|
|
Karsten Hopp |
020142 |
/* If match_text is set it contains the full text that must match.
|
|
Karsten Hopp |
020142 |
* Nothing else to try. Doesn't handle combining chars well. */
|
|
Karsten Hopp |
020142 |
! if (prog->match_text != NULL
|
|
Karsten Hopp |
020142 |
! #ifdef FEAT_MBYTE
|
|
Karsten Hopp |
020142 |
! && !ireg_icombine
|
|
Karsten Hopp |
020142 |
! #endif
|
|
Karsten Hopp |
020142 |
! )
|
|
Karsten Hopp |
020142 |
return find_match_text(col, prog->regstart, prog->match_text);
|
|
Karsten Hopp |
020142 |
}
|
|
Karsten Hopp |
020142 |
|
|
Karsten Hopp |
020142 |
*** ../vim-7.3.1151/src/version.c 2013-06-08 23:26:10.000000000 +0200
|
|
Karsten Hopp |
020142 |
--- src/version.c 2013-06-08 23:28:06.000000000 +0200
|
|
Karsten Hopp |
020142 |
***************
|
|
Karsten Hopp |
020142 |
*** 730,731 ****
|
|
Karsten Hopp |
020142 |
--- 730,733 ----
|
|
Karsten Hopp |
020142 |
{ /* Add new patch number below this line */
|
|
Karsten Hopp |
020142 |
+ /**/
|
|
Karsten Hopp |
020142 |
+ 1152,
|
|
Karsten Hopp |
020142 |
/**/
|
|
Karsten Hopp |
020142 |
|
|
Karsten Hopp |
020142 |
--
|
|
Karsten Hopp |
020142 |
hundred-and-one symptoms of being an internet addict:
|
|
Karsten Hopp |
020142 |
118. You are on a first-name basis with your ISP's staff.
|
|
Karsten Hopp |
020142 |
|
|
Karsten Hopp |
020142 |
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
|
Karsten Hopp |
020142 |
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
|
Karsten Hopp |
020142 |
\\\ an exciting new programming language -- http://www.Zimbu.org ///
|
|
Karsten Hopp |
020142 |
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|