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