|
|
073263 |
To: vim_dev@googlegroups.com
|
|
|
073263 |
Subject: Patch 7.4.489
|
|
|
073263 |
Fcc: outbox
|
|
|
073263 |
From: Bram Moolenaar <Bram@moolenaar.net>
|
|
|
073263 |
Mime-Version: 1.0
|
|
|
073263 |
Content-Type: text/plain; charset=UTF-8
|
|
|
073263 |
Content-Transfer-Encoding: 8bit
|
|
|
073263 |
------------
|
|
|
073263 |
|
|
|
073263 |
Patch 7.4.489
|
|
|
073263 |
Problem: Cursor movement still wrong when 'lbr' is set and there is a
|
|
|
073263 |
number column. (Hirohito Higashi)
|
|
|
073263 |
Solution: Add correction for number column. (Hiroyuki Takagi)
|
|
|
073263 |
Files: src/charset.c
|
|
|
073263 |
|
|
|
073263 |
|
|
|
073263 |
*** ../vim-7.4.488/src/charset.c 2014-10-15 21:26:35.566082778 +0200
|
|
|
073263 |
--- src/charset.c 2014-10-31 12:39:41.815322421 +0100
|
|
|
073263 |
***************
|
|
|
073263 |
*** 1184,1189 ****
|
|
|
073263 |
--- 1184,1191 ----
|
|
|
073263 |
{
|
|
|
073263 |
col -= W_WIDTH(wp);
|
|
|
073263 |
numberextra = W_WIDTH(wp) - (numberextra - win_col_off2(wp));
|
|
|
073263 |
+ if (numberextra > 0)
|
|
|
073263 |
+ col %= numberextra;
|
|
|
073263 |
if (*p_sbr != NUL)
|
|
|
073263 |
{
|
|
|
073263 |
colnr_T sbrlen = (colnr_T)MB_CHARLEN(p_sbr);
|
|
|
073263 |
*** ../vim-7.4.488/src/version.c 2014-10-22 22:08:58.386493141 +0200
|
|
|
073263 |
--- src/version.c 2014-10-31 12:37:38.439325394 +0100
|
|
|
073263 |
***************
|
|
|
073263 |
*** 743,744 ****
|
|
|
073263 |
--- 743,746 ----
|
|
|
073263 |
{ /* Add new patch number below this line */
|
|
|
073263 |
+ /**/
|
|
|
073263 |
+ 489,
|
|
|
073263 |
/**/
|
|
|
073263 |
|
|
|
073263 |
--
|
|
|
073263 |
This is the polymorph virus! Follow these instructions carefully:
|
|
|
073263 |
1. Send this message to everybody you know.
|
|
|
073263 |
2. Format your harddisk.
|
|
|
073263 |
Thank you for your cooperation in spreading the most powerful virus ever!
|
|
|
073263 |
|
|
|
073263 |
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
|
|
073263 |
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
|
|
073263 |
\\\ an exciting new programming language -- http://www.Zimbu.org ///
|
|
|
073263 |
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|