|
Karsten Hopp |
392302 |
To: vim_dev@googlegroups.com
|
|
Karsten Hopp |
392302 |
Subject: Patch 7.3.190
|
|
Karsten Hopp |
392302 |
Fcc: outbox
|
|
Karsten Hopp |
392302 |
From: Bram Moolenaar <Bram@moolenaar.net>
|
|
Karsten Hopp |
392302 |
Mime-Version: 1.0
|
|
Karsten Hopp |
392302 |
Content-Type: text/plain; charset=UTF-8
|
|
Karsten Hopp |
392302 |
Content-Transfer-Encoding: 8bit
|
|
Karsten Hopp |
392302 |
------------
|
|
Karsten Hopp |
392302 |
|
|
Karsten Hopp |
392302 |
Patch 7.3.190
|
|
Karsten Hopp |
392302 |
Problem: When there is a "containedin" syntax argument highlighting may be
|
|
Karsten Hopp |
392302 |
wrong. (Radek)
|
|
Karsten Hopp |
392302 |
Solution: Reset current_next_list. (Ben Schmidt)
|
|
Karsten Hopp |
392302 |
Files: src/syntax.c
|
|
Karsten Hopp |
392302 |
|
|
Karsten Hopp |
392302 |
|
|
Karsten Hopp |
392302 |
*** ../vim-7.3.189/src/syntax.c 2011-04-11 16:56:29.000000000 +0200
|
|
Karsten Hopp |
392302 |
--- src/syntax.c 2011-05-19 12:02:43.000000000 +0200
|
|
Karsten Hopp |
392302 |
***************
|
|
Karsten Hopp |
392302 |
*** 2566,2571 ****
|
|
Karsten Hopp |
392302 |
--- 2566,2574 ----
|
|
Karsten Hopp |
392302 |
#endif
|
|
Karsten Hopp |
392302 |
update_si_attr(current_state.ga_len - 1);
|
|
Karsten Hopp |
392302 |
|
|
Karsten Hopp |
392302 |
+ /* nextgroup= should not match in the end pattern */
|
|
Karsten Hopp |
392302 |
+ current_next_list = NULL;
|
|
Karsten Hopp |
392302 |
+
|
|
Karsten Hopp |
392302 |
/* what matches next may be different now, clear it */
|
|
Karsten Hopp |
392302 |
next_match_idx = 0;
|
|
Karsten Hopp |
392302 |
next_match_col = MAXCOL;
|
|
Karsten Hopp |
392302 |
*** ../vim-7.3.189/src/version.c 2011-05-10 17:29:28.000000000 +0200
|
|
Karsten Hopp |
392302 |
--- src/version.c 2011-05-19 12:13:28.000000000 +0200
|
|
Karsten Hopp |
392302 |
***************
|
|
Karsten Hopp |
392302 |
*** 716,717 ****
|
|
Karsten Hopp |
392302 |
--- 716,719 ----
|
|
Karsten Hopp |
392302 |
{ /* Add new patch number below this line */
|
|
Karsten Hopp |
392302 |
+ /**/
|
|
Karsten Hopp |
392302 |
+ 190,
|
|
Karsten Hopp |
392302 |
/**/
|
|
Karsten Hopp |
392302 |
|
|
Karsten Hopp |
392302 |
--
|
|
Karsten Hopp |
392302 |
From "know your smileys":
|
|
Karsten Hopp |
392302 |
:'-D Laughing so much that they're crying
|
|
Karsten Hopp |
392302 |
|
|
Karsten Hopp |
392302 |
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
|
Karsten Hopp |
392302 |
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
|
Karsten Hopp |
392302 |
\\\ an exciting new programming language -- http://www.Zimbu.org ///
|
|
Karsten Hopp |
392302 |
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|