|
Karsten Hopp |
7023ea |
To: vim_dev@googlegroups.com
|
|
Karsten Hopp |
7023ea |
Subject: Patch 7.3.1203
|
|
Karsten Hopp |
7023ea |
Fcc: outbox
|
|
Karsten Hopp |
7023ea |
From: Bram Moolenaar <Bram@moolenaar.net>
|
|
Karsten Hopp |
7023ea |
Mime-Version: 1.0
|
|
Karsten Hopp |
7023ea |
Content-Type: text/plain; charset=UTF-8
|
|
Karsten Hopp |
7023ea |
Content-Transfer-Encoding: 8bit
|
|
Karsten Hopp |
7023ea |
------------
|
|
Karsten Hopp |
7023ea |
|
|
Karsten Hopp |
7023ea |
Patch 7.3.1203
|
|
Karsten Hopp |
7023ea |
Problem: Matches from matchadd() might be highlighted incorrectly when they
|
|
Karsten Hopp |
7023ea |
are at a fixed position and inserting lines. (John Szakmeister)
|
|
Karsten Hopp |
7023ea |
Solution: Redraw all lines below a change if there are highlighted matches.
|
|
Karsten Hopp |
7023ea |
(idea by Christian Brabandt)
|
|
Karsten Hopp |
7023ea |
Files: src/screen.c
|
|
Karsten Hopp |
7023ea |
|
|
Karsten Hopp |
7023ea |
|
|
Karsten Hopp |
7023ea |
*** ../vim-7.3.1202/src/screen.c 2013-06-08 18:19:40.000000000 +0200
|
|
Karsten Hopp |
7023ea |
--- src/screen.c 2013-06-15 22:57:25.000000000 +0200
|
|
Karsten Hopp |
7023ea |
***************
|
|
Karsten Hopp |
7023ea |
*** 1638,1643 ****
|
|
Karsten Hopp |
7023ea |
--- 1638,1647 ----
|
|
Karsten Hopp |
7023ea |
# endif
|
|
Karsten Hopp |
7023ea |
syntax_check_changed(lnum)))
|
|
Karsten Hopp |
7023ea |
#endif
|
|
Karsten Hopp |
7023ea |
+ #ifdef FEAT_SEARCH_EXTRA
|
|
Karsten Hopp |
7023ea |
+ /* match in fixed position might need redraw */
|
|
Karsten Hopp |
7023ea |
+ || wp->w_match_head != NULL
|
|
Karsten Hopp |
7023ea |
+ #endif
|
|
Karsten Hopp |
7023ea |
)))))
|
|
Karsten Hopp |
7023ea |
{
|
|
Karsten Hopp |
7023ea |
#ifdef FEAT_SEARCH_EXTRA
|
|
Karsten Hopp |
7023ea |
*** ../vim-7.3.1202/src/version.c 2013-06-15 22:26:46.000000000 +0200
|
|
Karsten Hopp |
7023ea |
--- src/version.c 2013-06-15 22:59:43.000000000 +0200
|
|
Karsten Hopp |
7023ea |
***************
|
|
Karsten Hopp |
7023ea |
*** 730,731 ****
|
|
Karsten Hopp |
7023ea |
--- 730,733 ----
|
|
Karsten Hopp |
7023ea |
{ /* Add new patch number below this line */
|
|
Karsten Hopp |
7023ea |
+ /**/
|
|
Karsten Hopp |
7023ea |
+ 1203,
|
|
Karsten Hopp |
7023ea |
/**/
|
|
Karsten Hopp |
7023ea |
|
|
Karsten Hopp |
7023ea |
--
|
|
Karsten Hopp |
7023ea |
hundred-and-one symptoms of being an internet addict:
|
|
Karsten Hopp |
7023ea |
221. Your wife melts your keyboard in the oven.
|
|
Karsten Hopp |
7023ea |
|
|
Karsten Hopp |
7023ea |
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
|
Karsten Hopp |
7023ea |
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
|
Karsten Hopp |
7023ea |
\\\ an exciting new programming language -- http://www.Zimbu.org ///
|
|
Karsten Hopp |
7023ea |
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|