|
Karsten Hopp |
a91fa3 |
To: vim_dev@googlegroups.com
|
|
Karsten Hopp |
a91fa3 |
Subject: Patch 7.3.546
|
|
Karsten Hopp |
a91fa3 |
Fcc: outbox
|
|
Karsten Hopp |
a91fa3 |
From: Bram Moolenaar <Bram@moolenaar.net>
|
|
Karsten Hopp |
a91fa3 |
Mime-Version: 1.0
|
|
Karsten Hopp |
a91fa3 |
Content-Type: text/plain; charset=UTF-8
|
|
Karsten Hopp |
a91fa3 |
Content-Transfer-Encoding: 8bit
|
|
Karsten Hopp |
a91fa3 |
------------
|
|
Karsten Hopp |
a91fa3 |
|
|
Karsten Hopp |
a91fa3 |
Patch 7.3.546
|
|
Karsten Hopp |
a91fa3 |
Problem: Bogus line break.
|
|
Karsten Hopp |
a91fa3 |
Solution: Remove the line break.
|
|
Karsten Hopp |
a91fa3 |
Files: src/screen.c
|
|
Karsten Hopp |
a91fa3 |
|
|
Karsten Hopp |
a91fa3 |
|
|
Karsten Hopp |
a91fa3 |
*** ../vim-7.3.545/src/screen.c 2012-06-01 15:20:49.000000000 +0200
|
|
Karsten Hopp |
a91fa3 |
--- src/screen.c 2012-06-01 16:31:30.000000000 +0200
|
|
Karsten Hopp |
a91fa3 |
***************
|
|
Karsten Hopp |
a91fa3 |
*** 3228,3235 ****
|
|
Karsten Hopp |
a91fa3 |
/* no bad word found at line start, don't check until end of a
|
|
Karsten Hopp |
a91fa3 |
* word */
|
|
Karsten Hopp |
a91fa3 |
spell_hlf = HLF_COUNT;
|
|
Karsten Hopp |
a91fa3 |
! word_end = (int)(spell_to_word_end(ptr, wp)
|
|
Karsten Hopp |
a91fa3 |
! - line + 1);
|
|
Karsten Hopp |
a91fa3 |
}
|
|
Karsten Hopp |
a91fa3 |
else
|
|
Karsten Hopp |
a91fa3 |
{
|
|
Karsten Hopp |
a91fa3 |
--- 3228,3234 ----
|
|
Karsten Hopp |
a91fa3 |
/* no bad word found at line start, don't check until end of a
|
|
Karsten Hopp |
a91fa3 |
* word */
|
|
Karsten Hopp |
a91fa3 |
spell_hlf = HLF_COUNT;
|
|
Karsten Hopp |
a91fa3 |
! word_end = (int)(spell_to_word_end(ptr, wp) - line + 1);
|
|
Karsten Hopp |
a91fa3 |
}
|
|
Karsten Hopp |
a91fa3 |
else
|
|
Karsten Hopp |
a91fa3 |
{
|
|
Karsten Hopp |
a91fa3 |
*** ../vim-7.3.545/src/version.c 2012-06-06 19:02:40.000000000 +0200
|
|
Karsten Hopp |
a91fa3 |
--- src/version.c 2012-06-06 19:05:11.000000000 +0200
|
|
Karsten Hopp |
a91fa3 |
***************
|
|
Karsten Hopp |
a91fa3 |
*** 716,717 ****
|
|
Karsten Hopp |
a91fa3 |
--- 716,719 ----
|
|
Karsten Hopp |
a91fa3 |
{ /* Add new patch number below this line */
|
|
Karsten Hopp |
a91fa3 |
+ /**/
|
|
Karsten Hopp |
a91fa3 |
+ 546,
|
|
Karsten Hopp |
a91fa3 |
/**/
|
|
Karsten Hopp |
a91fa3 |
|
|
Karsten Hopp |
a91fa3 |
--
|
|
Karsten Hopp |
a91fa3 |
How To Keep A Healthy Level Of Insanity:
|
|
Karsten Hopp |
a91fa3 |
5. Put decaf in the coffee maker for 3 weeks. Once everyone has gotten
|
|
Karsten Hopp |
a91fa3 |
over their caffeine addictions, switch to espresso.
|
|
Karsten Hopp |
a91fa3 |
|
|
Karsten Hopp |
a91fa3 |
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
|
Karsten Hopp |
a91fa3 |
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
|
Karsten Hopp |
a91fa3 |
\\\ an exciting new programming language -- http://www.Zimbu.org ///
|
|
Karsten Hopp |
a91fa3 |
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|