|
Karsten Hopp |
856bfd |
To: vim_dev@googlegroups.com
|
|
Karsten Hopp |
856bfd |
Subject: Patch 7.3.548
|
|
Karsten Hopp |
856bfd |
Fcc: outbox
|
|
Karsten Hopp |
856bfd |
From: Bram Moolenaar <Bram@moolenaar.net>
|
|
Karsten Hopp |
856bfd |
Mime-Version: 1.0
|
|
Karsten Hopp |
856bfd |
Content-Type: text/plain; charset=UTF-8
|
|
Karsten Hopp |
856bfd |
Content-Transfer-Encoding: 8bit
|
|
Karsten Hopp |
856bfd |
------------
|
|
Karsten Hopp |
856bfd |
|
|
Karsten Hopp |
856bfd |
Patch 7.3.548
|
|
Karsten Hopp |
856bfd |
Problem: Compiler warning on 64 bit Windows.
|
|
Karsten Hopp |
856bfd |
Solution: Add type cast. (Mike Williams)
|
|
Karsten Hopp |
856bfd |
Files: src/ops.c
|
|
Karsten Hopp |
856bfd |
|
|
Karsten Hopp |
856bfd |
|
|
Karsten Hopp |
856bfd |
*** ../vim-7.3.547/src/ops.c 2012-06-06 23:08:33.000000000 +0200
|
|
Karsten Hopp |
856bfd |
--- src/ops.c 2012-06-07 21:07:57.000000000 +0200
|
|
Karsten Hopp |
856bfd |
***************
|
|
Karsten Hopp |
856bfd |
*** 4352,4358 ****
|
|
Karsten Hopp |
856bfd |
|
|
Karsten Hopp |
856bfd |
char_u *new_curr = skip_comment(curr, TRUE, insert_space,
|
|
Karsten Hopp |
856bfd |
&prev_was_comment);
|
|
Karsten Hopp |
856bfd |
! comments[t] = new_curr - curr;
|
|
Karsten Hopp |
856bfd |
curr = new_curr;
|
|
Karsten Hopp |
856bfd |
}
|
|
Karsten Hopp |
856bfd |
else
|
|
Karsten Hopp |
856bfd |
--- 4352,4358 ----
|
|
Karsten Hopp |
856bfd |
|
|
Karsten Hopp |
856bfd |
char_u *new_curr = skip_comment(curr, TRUE, insert_space,
|
|
Karsten Hopp |
856bfd |
&prev_was_comment);
|
|
Karsten Hopp |
856bfd |
! comments[t] = (int)(new_curr - curr);
|
|
Karsten Hopp |
856bfd |
curr = new_curr;
|
|
Karsten Hopp |
856bfd |
}
|
|
Karsten Hopp |
856bfd |
else
|
|
Karsten Hopp |
856bfd |
*** ../vim-7.3.547/src/version.c 2012-06-06 23:08:33.000000000 +0200
|
|
Karsten Hopp |
856bfd |
--- src/version.c 2012-06-07 21:08:35.000000000 +0200
|
|
Karsten Hopp |
856bfd |
***************
|
|
Karsten Hopp |
856bfd |
*** 716,717 ****
|
|
Karsten Hopp |
856bfd |
--- 716,719 ----
|
|
Karsten Hopp |
856bfd |
{ /* Add new patch number below this line */
|
|
Karsten Hopp |
856bfd |
+ /**/
|
|
Karsten Hopp |
856bfd |
+ 548,
|
|
Karsten Hopp |
856bfd |
/**/
|
|
Karsten Hopp |
856bfd |
|
|
Karsten Hopp |
856bfd |
--
|
|
Karsten Hopp |
856bfd |
How To Keep A Healthy Level Of Insanity:
|
|
Karsten Hopp |
856bfd |
17. When the money comes out the ATM, scream "I won!, I won! 3rd
|
|
Karsten Hopp |
856bfd |
time this week!!!!!"
|
|
Karsten Hopp |
856bfd |
|
|
Karsten Hopp |
856bfd |
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
|
Karsten Hopp |
856bfd |
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
|
Karsten Hopp |
856bfd |
\\\ an exciting new programming language -- http://www.Zimbu.org ///
|
|
Karsten Hopp |
856bfd |
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|