|
Karsten Hopp |
2032ab |
To: vim-dev@vim.org
|
|
Karsten Hopp |
2032ab |
Subject: Patch 7.0.019
|
|
Karsten Hopp |
2032ab |
Fcc: outbox
|
|
Karsten Hopp |
2032ab |
From: Bram Moolenaar <Bram@moolenaar.net>
|
|
Karsten Hopp |
2032ab |
Mime-Version: 1.0
|
|
Karsten Hopp |
2032ab |
Content-Type: text/plain; charset=ISO-8859-1
|
|
Karsten Hopp |
2032ab |
Content-Transfer-Encoding: 8bit
|
|
Karsten Hopp |
2032ab |
------------
|
|
Karsten Hopp |
2032ab |
|
|
Karsten Hopp |
2032ab |
Patch 7.0.019
|
|
Karsten Hopp |
2032ab |
Problem: Repeating "VjA789" may cause a crash. (James Vega)
|
|
Karsten Hopp |
2032ab |
Solution: Check the cursor column after moving it to another line.
|
|
Karsten Hopp |
2032ab |
Files: src/ops.c
|
|
Karsten Hopp |
2032ab |
|
|
Karsten Hopp |
2032ab |
|
|
Karsten Hopp |
2032ab |
*** ../vim-7.0.018/src/ops.c Sun Apr 30 20:45:12 2006
|
|
Karsten Hopp |
2032ab |
--- src/ops.c Tue Jun 20 12:49:46 2006
|
|
Karsten Hopp |
2032ab |
***************
|
|
Karsten Hopp |
2032ab |
*** 2413,2418 ****
|
|
Karsten Hopp |
2032ab |
--- 2413,2419 ----
|
|
Karsten Hopp |
2032ab |
else
|
|
Karsten Hopp |
2032ab |
{
|
|
Karsten Hopp |
2032ab |
curwin->w_cursor = oap->end;
|
|
Karsten Hopp |
2032ab |
+ check_cursor_col();
|
|
Karsten Hopp |
2032ab |
|
|
Karsten Hopp |
2032ab |
/* Works just like an 'i'nsert on the next character. */
|
|
Karsten Hopp |
2032ab |
if (!lineempty(curwin->w_cursor.lnum)
|
|
Karsten Hopp |
2032ab |
*** ../vim-7.0.018/src/version.c Mon Jun 19 10:56:20 2006
|
|
Karsten Hopp |
2032ab |
--- src/version.c Tue Jun 20 12:55:10 2006
|
|
Karsten Hopp |
2032ab |
***************
|
|
Karsten Hopp |
2032ab |
*** 668,669 ****
|
|
Karsten Hopp |
2032ab |
--- 668,671 ----
|
|
Karsten Hopp |
2032ab |
{ /* Add new patch number below this line */
|
|
Karsten Hopp |
2032ab |
+ /**/
|
|
Karsten Hopp |
2032ab |
+ 19,
|
|
Karsten Hopp |
2032ab |
/**/
|
|
Karsten Hopp |
2032ab |
|
|
Karsten Hopp |
2032ab |
--
|
|
Karsten Hopp |
2032ab |
Two cows are standing together in a field. One asks the other:
|
|
Karsten Hopp |
2032ab |
"So what do you think about this Mad Cow Disease?"
|
|
Karsten Hopp |
2032ab |
The other replies: "That doesn't concern me. I'm a helicopter."
|
|
Karsten Hopp |
2032ab |
|
|
Karsten Hopp |
2032ab |
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
|
Karsten Hopp |
2032ab |
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
|
Karsten Hopp |
2032ab |
\\\ download, build and distribute -- http://www.A-A-P.org ///
|
|
Karsten Hopp |
2032ab |
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|