|
Karsten Hopp |
b2f27d |
To: vim-dev@vim.org
|
|
Karsten Hopp |
b2f27d |
Subject: Patch 7.0.145
|
|
Karsten Hopp |
b2f27d |
Fcc: outbox
|
|
Karsten Hopp |
b2f27d |
From: Bram Moolenaar <Bram@moolenaar.net>
|
|
Karsten Hopp |
b2f27d |
Mime-Version: 1.0
|
|
Karsten Hopp |
b2f27d |
Content-Type: text/plain; charset=ISO-8859-1
|
|
Karsten Hopp |
b2f27d |
Content-Transfer-Encoding: 8bit
|
|
Karsten Hopp |
b2f27d |
------------
|
|
Karsten Hopp |
b2f27d |
|
|
Karsten Hopp |
b2f27d |
Patch 7.0.145 (after 7.0.142)
|
|
Karsten Hopp |
b2f27d |
Problem: Compiler warning.
|
|
Karsten Hopp |
b2f27d |
Solution: Add type cast.
|
|
Karsten Hopp |
b2f27d |
Files: src/normal.c
|
|
Karsten Hopp |
b2f27d |
|
|
Karsten Hopp |
b2f27d |
|
|
Karsten Hopp |
b2f27d |
*** ../vim-7.0.144/src/normal.c Tue Oct 17 16:55:47 2006
|
|
Karsten Hopp |
b2f27d |
--- src/normal.c Tue Oct 17 22:37:42 2006
|
|
Karsten Hopp |
b2f27d |
***************
|
|
Karsten Hopp |
b2f27d |
*** 2387,2393 ****
|
|
Karsten Hopp |
b2f27d |
if (VIsual_select)
|
|
Karsten Hopp |
b2f27d |
{
|
|
Karsten Hopp |
b2f27d |
stuffcharReadbuff(Ctrl_G);
|
|
Karsten Hopp |
b2f27d |
! stuffReadbuff("\"+p");
|
|
Karsten Hopp |
b2f27d |
}
|
|
Karsten Hopp |
b2f27d |
else
|
|
Karsten Hopp |
b2f27d |
{
|
|
Karsten Hopp |
b2f27d |
--- 2387,2393 ----
|
|
Karsten Hopp |
b2f27d |
if (VIsual_select)
|
|
Karsten Hopp |
b2f27d |
{
|
|
Karsten Hopp |
b2f27d |
stuffcharReadbuff(Ctrl_G);
|
|
Karsten Hopp |
b2f27d |
! stuffReadbuff((char_u *)"\"+p");
|
|
Karsten Hopp |
b2f27d |
}
|
|
Karsten Hopp |
b2f27d |
else
|
|
Karsten Hopp |
b2f27d |
{
|
|
Karsten Hopp |
b2f27d |
*** ../vim-7.0.144/src/version.c Tue Oct 17 18:50:15 2006
|
|
Karsten Hopp |
b2f27d |
--- src/version.c Tue Oct 17 22:38:21 2006
|
|
Karsten Hopp |
b2f27d |
***************
|
|
Karsten Hopp |
b2f27d |
*** 668,669 ****
|
|
Karsten Hopp |
b2f27d |
--- 668,671 ----
|
|
Karsten Hopp |
b2f27d |
{ /* Add new patch number below this line */
|
|
Karsten Hopp |
b2f27d |
+ /**/
|
|
Karsten Hopp |
b2f27d |
+ 145,
|
|
Karsten Hopp |
b2f27d |
/**/
|
|
Karsten Hopp |
b2f27d |
|
|
Karsten Hopp |
b2f27d |
--
|
|
Karsten Hopp |
b2f27d |
hundred-and-one symptoms of being an internet addict:
|
|
Karsten Hopp |
b2f27d |
59. Your wife says communication is important in a marriage...so you buy
|
|
Karsten Hopp |
b2f27d |
another computer and install a second phone line so the two of you can
|
|
Karsten Hopp |
b2f27d |
chat.
|
|
Karsten Hopp |
b2f27d |
|
|
Karsten Hopp |
b2f27d |
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
|
Karsten Hopp |
b2f27d |
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
|
Karsten Hopp |
b2f27d |
\\\ download, build and distribute -- http://www.A-A-P.org ///
|
|
Karsten Hopp |
b2f27d |
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|