From 9f140581e08b255697a4d824ac57559a04c416e0 Mon Sep 17 00:00:00 2001 From: Florian Pritz Date: Sun, 6 Feb 2011 20:37:35 +0100 Subject: misc updates Signed-off-by: Florian Pritz --- gvim/vim-7.2/7.2.255 | 71 ---------------------------------------------------- 1 file changed, 71 deletions(-) delete mode 100644 gvim/vim-7.2/7.2.255 (limited to 'gvim/vim-7.2/7.2.255') diff --git a/gvim/vim-7.2/7.2.255 b/gvim/vim-7.2/7.2.255 deleted file mode 100644 index 1bb85b1..0000000 --- a/gvim/vim-7.2/7.2.255 +++ /dev/null @@ -1,71 +0,0 @@ -To: vim-dev@vim.org -Subject: Patch 7.2.255 -Fcc: outbox -From: Bram Moolenaar -Mime-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit ------------- - -Patch 7.2.255 (after 7.2.242) -Problem: Setting 'rightleft', 'linebreak' and 'wrap' may cause cursor to be - in wrong place. -Solution: Recompute the cursor column for these options. -Files: src/option.c - - -*** ../vim-7.2.254/src/option.c 2009-07-29 15:41:32.000000000 +0200 ---- src/option.c 2009-09-11 13:59:55.000000000 +0200 -*************** -*** 7430,7435 **** ---- 7430,7437 ---- - { - if (curwin->w_p_wrap) - curwin->w_leftcol = 0; -+ if (curwin->w_curswant != MAXCOL) -+ curwin->w_set_curswant = TRUE; - } - - #ifdef FEAT_WINDOWS -*************** -*** 7664,7669 **** ---- 7666,7687 ---- - } - #endif - -+ #ifdef FEAT_LINEBREAK -+ if ((int *)varp == &curwin->w_p_lbr) -+ { -+ if (curwin->w_curswant != MAXCOL) -+ curwin->w_set_curswant = TRUE; -+ } -+ #endif -+ -+ #ifdef FEAT_RIGHTLEFT -+ if ((int *)varp == &curwin->w_p_rl) -+ { -+ if (curwin->w_curswant != MAXCOL) -+ curwin->w_set_curswant = TRUE; -+ } -+ #endif -+ - /* - * End of handling side effects for bool options. - */ -*** ../vim-7.2.254/src/version.c 2009-09-11 15:04:13.000000000 +0200 ---- src/version.c 2009-09-11 15:19:40.000000000 +0200 -*************** -*** 678,679 **** ---- 678,681 ---- - { /* Add new patch number below this line */ -+ /**/ -+ 255, - /**/ - --- -A computer without Windows is like a fish without a bicycle. - - /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\ -/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ -\\\ download, build and distribute -- http://www.A-A-P.org /// - \\\ help me help AIDS victims -- http://ICCF-Holland.org /// -- cgit v1.2.3-24-g4f1b