|
Karsten Hopp |
0cf2a3 |
To: vim_dev@googlegroups.com
|
|
Karsten Hopp |
0cf2a3 |
Subject: Patch 7.3.744
|
|
Karsten Hopp |
0cf2a3 |
Fcc: outbox
|
|
Karsten Hopp |
0cf2a3 |
From: Bram Moolenaar <Bram@moolenaar.net>
|
|
Karsten Hopp |
0cf2a3 |
Mime-Version: 1.0
|
|
Karsten Hopp |
0cf2a3 |
Content-Type: text/plain; charset=UTF-8
|
|
Karsten Hopp |
0cf2a3 |
Content-Transfer-Encoding: 8bit
|
|
Karsten Hopp |
0cf2a3 |
------------
|
|
Karsten Hopp |
0cf2a3 |
|
|
Karsten Hopp |
0cf2a3 |
Patch 7.3.744
|
|
Karsten Hopp |
0cf2a3 |
Problem: 64 bit compiler warning.
|
|
Karsten Hopp |
0cf2a3 |
Solution: Add type cast. (Mike Williams)
|
|
Karsten Hopp |
0cf2a3 |
Files: src/ex_cmds.c
|
|
Karsten Hopp |
0cf2a3 |
|
|
Karsten Hopp |
0cf2a3 |
|
|
Karsten Hopp |
0cf2a3 |
*** ../vim-7.3.743/src/ex_cmds.c 2012-11-28 16:06:13.000000000 +0100
|
|
Karsten Hopp |
0cf2a3 |
--- src/ex_cmds.c 2012-11-29 20:08:10.000000000 +0100
|
|
Karsten Hopp |
0cf2a3 |
***************
|
|
Karsten Hopp |
0cf2a3 |
*** 6460,6466 ****
|
|
Karsten Hopp |
0cf2a3 |
/*
|
|
Karsten Hopp |
0cf2a3 |
* Find all *.txt files.
|
|
Karsten Hopp |
0cf2a3 |
*/
|
|
Karsten Hopp |
0cf2a3 |
! dirlen = STRLEN(dir);
|
|
Karsten Hopp |
0cf2a3 |
STRCPY(NameBuff, dir);
|
|
Karsten Hopp |
0cf2a3 |
STRCAT(NameBuff, "/**/*");
|
|
Karsten Hopp |
0cf2a3 |
STRCAT(NameBuff, ext);
|
|
Karsten Hopp |
0cf2a3 |
--- 6460,6466 ----
|
|
Karsten Hopp |
0cf2a3 |
/*
|
|
Karsten Hopp |
0cf2a3 |
* Find all *.txt files.
|
|
Karsten Hopp |
0cf2a3 |
*/
|
|
Karsten Hopp |
0cf2a3 |
! dirlen = (int)STRLEN(dir);
|
|
Karsten Hopp |
0cf2a3 |
STRCPY(NameBuff, dir);
|
|
Karsten Hopp |
0cf2a3 |
STRCAT(NameBuff, "/**/*");
|
|
Karsten Hopp |
0cf2a3 |
STRCAT(NameBuff, ext);
|
|
Karsten Hopp |
0cf2a3 |
*** ../vim-7.3.743/src/version.c 2012-11-28 23:03:02.000000000 +0100
|
|
Karsten Hopp |
0cf2a3 |
--- src/version.c 2012-11-29 20:08:37.000000000 +0100
|
|
Karsten Hopp |
0cf2a3 |
***************
|
|
Karsten Hopp |
0cf2a3 |
*** 727,728 ****
|
|
Karsten Hopp |
0cf2a3 |
--- 727,730 ----
|
|
Karsten Hopp |
0cf2a3 |
{ /* Add new patch number below this line */
|
|
Karsten Hopp |
0cf2a3 |
+ /**/
|
|
Karsten Hopp |
0cf2a3 |
+ 744,
|
|
Karsten Hopp |
0cf2a3 |
/**/
|
|
Karsten Hopp |
0cf2a3 |
|
|
Karsten Hopp |
0cf2a3 |
--
|
|
Karsten Hopp |
0cf2a3 |
From "know your smileys":
|
|
Karsten Hopp |
0cf2a3 |
*<|:-) Santa Claus (Ho Ho Ho)
|
|
Karsten Hopp |
0cf2a3 |
|
|
Karsten Hopp |
0cf2a3 |
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
|
Karsten Hopp |
0cf2a3 |
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
|
Karsten Hopp |
0cf2a3 |
\\\ an exciting new programming language -- http://www.Zimbu.org ///
|
|
Karsten Hopp |
0cf2a3 |
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|