|
Karsten Hopp |
8c42cc |
To: vim_dev@googlegroups.com
|
|
Karsten Hopp |
8c42cc |
Subject: Patch 7.3.525
|
|
Karsten Hopp |
8c42cc |
Fcc: outbox
|
|
Karsten Hopp |
8c42cc |
From: Bram Moolenaar <Bram@moolenaar.net>
|
|
Karsten Hopp |
8c42cc |
Mime-Version: 1.0
|
|
Karsten Hopp |
8c42cc |
Content-Type: text/plain; charset=UTF-8
|
|
Karsten Hopp |
8c42cc |
Content-Transfer-Encoding: 8bit
|
|
Karsten Hopp |
8c42cc |
------------
|
|
Karsten Hopp |
8c42cc |
|
|
Karsten Hopp |
8c42cc |
Patch 7.3.525
|
|
Karsten Hopp |
8c42cc |
Problem: Compiler warning on 64 bit MS-Windows.
|
|
Karsten Hopp |
8c42cc |
Solution: Add type cast. (Mike Williams)
|
|
Karsten Hopp |
8c42cc |
Files: src/ex_getln.c
|
|
Karsten Hopp |
8c42cc |
|
|
Karsten Hopp |
8c42cc |
|
|
Karsten Hopp |
8c42cc |
*** ../vim-7.3.524/src/ex_getln.c 2012-04-30 18:48:38.000000000 +0200
|
|
Karsten Hopp |
8c42cc |
--- src/ex_getln.c 2012-05-23 20:33:16.000000000 +0200
|
|
Karsten Hopp |
8c42cc |
***************
|
|
Karsten Hopp |
8c42cc |
*** 5263,5269 ****
|
|
Karsten Hopp |
8c42cc |
{
|
|
Karsten Hopp |
8c42cc |
static char_u compl[2] = { NUL, NUL };
|
|
Karsten Hopp |
8c42cc |
char *short_names = ":=@>?/";
|
|
Karsten Hopp |
8c42cc |
! int short_names_count = STRLEN(short_names);
|
|
Karsten Hopp |
8c42cc |
int history_name_count = sizeof(history_names) / sizeof(char *) - 1;
|
|
Karsten Hopp |
8c42cc |
|
|
Karsten Hopp |
8c42cc |
if (idx < short_names_count)
|
|
Karsten Hopp |
8c42cc |
--- 5263,5269 ----
|
|
Karsten Hopp |
8c42cc |
{
|
|
Karsten Hopp |
8c42cc |
static char_u compl[2] = { NUL, NUL };
|
|
Karsten Hopp |
8c42cc |
char *short_names = ":=@>?/";
|
|
Karsten Hopp |
8c42cc |
! int short_names_count = (int)STRLEN(short_names);
|
|
Karsten Hopp |
8c42cc |
int history_name_count = sizeof(history_names) / sizeof(char *) - 1;
|
|
Karsten Hopp |
8c42cc |
|
|
Karsten Hopp |
8c42cc |
if (idx < short_names_count)
|
|
Karsten Hopp |
8c42cc |
*** ../vim-7.3.524/src/version.c 2012-05-18 21:53:29.000000000 +0200
|
|
Karsten Hopp |
8c42cc |
--- src/version.c 2012-05-25 11:01:51.000000000 +0200
|
|
Karsten Hopp |
8c42cc |
***************
|
|
Karsten Hopp |
8c42cc |
*** 716,717 ****
|
|
Karsten Hopp |
8c42cc |
--- 716,719 ----
|
|
Karsten Hopp |
8c42cc |
{ /* Add new patch number below this line */
|
|
Karsten Hopp |
8c42cc |
+ /**/
|
|
Karsten Hopp |
8c42cc |
+ 525,
|
|
Karsten Hopp |
8c42cc |
/**/
|
|
Karsten Hopp |
8c42cc |
|
|
Karsten Hopp |
8c42cc |
--
|
|
Karsten Hopp |
8c42cc |
For humans, honesty is a matter of degree. Engineers are always honest in
|
|
Karsten Hopp |
8c42cc |
matters of technology and human relationships. That's why it's a good idea
|
|
Karsten Hopp |
8c42cc |
to keep engineers away from customers, romantic interests, and other people
|
|
Karsten Hopp |
8c42cc |
who can't handle the truth.
|
|
Karsten Hopp |
8c42cc |
(Scott Adams - The Dilbert principle)
|
|
Karsten Hopp |
8c42cc |
|
|
Karsten Hopp |
8c42cc |
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
|
Karsten Hopp |
8c42cc |
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
|
Karsten Hopp |
8c42cc |
\\\ an exciting new programming language -- http://www.Zimbu.org ///
|
|
Karsten Hopp |
8c42cc |
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|