|
Karsten Hopp |
ad9543 |
To: vim_dev@googlegroups.com
|
|
Karsten Hopp |
ad9543 |
Subject: Patch 7.4.729
|
|
Karsten Hopp |
ad9543 |
Fcc: outbox
|
|
Karsten Hopp |
ad9543 |
From: Bram Moolenaar <Bram@moolenaar.net>
|
|
Karsten Hopp |
ad9543 |
Mime-Version: 1.0
|
|
Karsten Hopp |
ad9543 |
Content-Type: text/plain; charset=UTF-8
|
|
Karsten Hopp |
ad9543 |
Content-Transfer-Encoding: 8bit
|
|
Karsten Hopp |
ad9543 |
------------
|
|
Karsten Hopp |
ad9543 |
|
|
Karsten Hopp |
ad9543 |
Patch 7.4.729 (after 7.4.721)
|
|
Karsten Hopp |
ad9543 |
Problem: Occasional crash with 'list' set.
|
|
Karsten Hopp |
ad9543 |
Solution: Fix off-by-one error. (Christian Brabandt)
|
|
Karsten Hopp |
ad9543 |
Files: src/screen.c
|
|
Karsten Hopp |
ad9543 |
|
|
Karsten Hopp |
ad9543 |
|
|
Karsten Hopp |
ad9543 |
*** ../vim-7.4.728/src/screen.c 2015-05-04 17:28:17.344445737 +0200
|
|
Karsten Hopp |
ad9543 |
--- src/screen.c 2015-05-14 05:49:39.183210016 +0200
|
|
Karsten Hopp |
ad9543 |
***************
|
|
Karsten Hopp |
ad9543 |
*** 4715,4721 ****
|
|
Karsten Hopp |
ad9543 |
&& !(noinvcur
|
|
Karsten Hopp |
ad9543 |
&& lnum == wp->w_cursor.lnum
|
|
Karsten Hopp |
ad9543 |
&& (colnr_T)vcol == wp->w_virtcol)))
|
|
Karsten Hopp |
ad9543 |
! && lcs_eol_one >= 0)
|
|
Karsten Hopp |
ad9543 |
{
|
|
Karsten Hopp |
ad9543 |
/* Display a '$' after the line or highlight an extra
|
|
Karsten Hopp |
ad9543 |
* character if the line break is included. */
|
|
Karsten Hopp |
ad9543 |
--- 4715,4721 ----
|
|
Karsten Hopp |
ad9543 |
&& !(noinvcur
|
|
Karsten Hopp |
ad9543 |
&& lnum == wp->w_cursor.lnum
|
|
Karsten Hopp |
ad9543 |
&& (colnr_T)vcol == wp->w_virtcol)))
|
|
Karsten Hopp |
ad9543 |
! && lcs_eol_one > 0)
|
|
Karsten Hopp |
ad9543 |
{
|
|
Karsten Hopp |
ad9543 |
/* Display a '$' after the line or highlight an extra
|
|
Karsten Hopp |
ad9543 |
* character if the line break is included. */
|
|
Karsten Hopp |
ad9543 |
*** ../vim-7.4.728/src/version.c 2015-05-06 11:33:37.168517956 +0200
|
|
Karsten Hopp |
ad9543 |
--- src/version.c 2015-05-14 05:51:49.949737971 +0200
|
|
Karsten Hopp |
ad9543 |
***************
|
|
Karsten Hopp |
ad9543 |
*** 743,744 ****
|
|
Karsten Hopp |
ad9543 |
--- 743,746 ----
|
|
Karsten Hopp |
ad9543 |
{ /* Add new patch number below this line */
|
|
Karsten Hopp |
ad9543 |
+ /**/
|
|
Karsten Hopp |
ad9543 |
+ 729,
|
|
Karsten Hopp |
ad9543 |
/**/
|
|
Karsten Hopp |
ad9543 |
|
|
Karsten Hopp |
ad9543 |
--
|
|
Karsten Hopp |
ad9543 |
He who laughs last, thinks slowest.
|
|
Karsten Hopp |
ad9543 |
|
|
Karsten Hopp |
ad9543 |
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
|
Karsten Hopp |
ad9543 |
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
|
Karsten Hopp |
ad9543 |
\\\ an exciting new programming language -- http://www.Zimbu.org ///
|
|
Karsten Hopp |
ad9543 |
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|