|
Karsten Hopp |
aaf398 |
To: vim_dev@googlegroups.com
|
|
Karsten Hopp |
aaf398 |
Subject: Patch 7.3.1
|
|
Karsten Hopp |
aaf398 |
Fcc: outbox
|
|
Karsten Hopp |
aaf398 |
From: Bram Moolenaar <Bram@moolenaar.net>
|
|
Karsten Hopp |
aaf398 |
Mime-Version: 1.0
|
|
Karsten Hopp |
aaf398 |
Content-Type: text/plain; charset=UTF-8
|
|
Karsten Hopp |
aaf398 |
Content-Transfer-Encoding: 8bit
|
|
Karsten Hopp |
aaf398 |
------------
|
|
Karsten Hopp |
aaf398 |
|
|
Karsten Hopp |
aaf398 |
Patch 7.3.101
|
|
Karsten Hopp |
aaf398 |
Problem: ino_t defined with wrong size.
|
|
Karsten Hopp |
aaf398 |
Solution: Move including auto/config.h before other includes. (Marius
|
|
Karsten Hopp |
aaf398 |
Geminas)
|
|
Karsten Hopp |
aaf398 |
Files: src/if_ruby.c, src/if_lua.c
|
|
Karsten Hopp |
aaf398 |
|
|
Karsten Hopp |
aaf398 |
|
|
Karsten Hopp |
aaf398 |
*** ../vim-7.3.100/src/if_ruby.c 2010-12-24 13:39:29.000000000 +0100
|
|
Karsten Hopp |
aaf398 |
--- src/if_ruby.c 2011-01-09 14:43:14.000000000 +0100
|
|
Karsten Hopp |
aaf398 |
***************
|
|
Karsten Hopp |
aaf398 |
*** 11,23 ****
|
|
Karsten Hopp |
aaf398 |
* See README.txt for an overview of the Vim source code.
|
|
Karsten Hopp |
aaf398 |
*/
|
|
Karsten Hopp |
aaf398 |
|
|
Karsten Hopp |
aaf398 |
- #include <stdio.h>
|
|
Karsten Hopp |
aaf398 |
- #include <string.h>
|
|
Karsten Hopp |
aaf398 |
-
|
|
Karsten Hopp |
aaf398 |
#ifdef HAVE_CONFIG_H
|
|
Karsten Hopp |
aaf398 |
# include "auto/config.h"
|
|
Karsten Hopp |
aaf398 |
#endif
|
|
Karsten Hopp |
aaf398 |
|
|
Karsten Hopp |
aaf398 |
#ifdef _WIN32
|
|
Karsten Hopp |
aaf398 |
# if !defined(DYNAMIC_RUBY_VER) || (DYNAMIC_RUBY_VER < 18)
|
|
Karsten Hopp |
aaf398 |
# define NT
|
|
Karsten Hopp |
aaf398 |
--- 11,23 ----
|
|
Karsten Hopp |
aaf398 |
* See README.txt for an overview of the Vim source code.
|
|
Karsten Hopp |
aaf398 |
*/
|
|
Karsten Hopp |
aaf398 |
|
|
Karsten Hopp |
aaf398 |
#ifdef HAVE_CONFIG_H
|
|
Karsten Hopp |
aaf398 |
# include "auto/config.h"
|
|
Karsten Hopp |
aaf398 |
#endif
|
|
Karsten Hopp |
aaf398 |
|
|
Karsten Hopp |
aaf398 |
+ #include <stdio.h>
|
|
Karsten Hopp |
aaf398 |
+ #include <string.h>
|
|
Karsten Hopp |
aaf398 |
+
|
|
Karsten Hopp |
aaf398 |
#ifdef _WIN32
|
|
Karsten Hopp |
aaf398 |
# if !defined(DYNAMIC_RUBY_VER) || (DYNAMIC_RUBY_VER < 18)
|
|
Karsten Hopp |
aaf398 |
# define NT
|
|
Karsten Hopp |
aaf398 |
*** ../vim-7.3.100/src/if_lua.c 2010-10-23 14:02:48.000000000 +0200
|
|
Karsten Hopp |
aaf398 |
--- src/if_lua.c 2011-01-09 14:46:46.000000000 +0100
|
|
Karsten Hopp |
aaf398 |
***************
|
|
Karsten Hopp |
aaf398 |
*** 9,20 ****
|
|
Karsten Hopp |
aaf398 |
* See README.txt for an overview of the Vim source code.
|
|
Karsten Hopp |
aaf398 |
*/
|
|
Karsten Hopp |
aaf398 |
|
|
Karsten Hopp |
aaf398 |
! #include <stdio.h>
|
|
Karsten Hopp |
aaf398 |
! #include <string.h>
|
|
Karsten Hopp |
aaf398 |
#include <lua.h>
|
|
Karsten Hopp |
aaf398 |
#include <lualib.h>
|
|
Karsten Hopp |
aaf398 |
#include <lauxlib.h>
|
|
Karsten Hopp |
aaf398 |
- #include "vim.h"
|
|
Karsten Hopp |
aaf398 |
|
|
Karsten Hopp |
aaf398 |
/* Only do the following when the feature is enabled. Needed for "make
|
|
Karsten Hopp |
aaf398 |
* depend". */
|
|
Karsten Hopp |
aaf398 |
--- 9,19 ----
|
|
Karsten Hopp |
aaf398 |
* See README.txt for an overview of the Vim source code.
|
|
Karsten Hopp |
aaf398 |
*/
|
|
Karsten Hopp |
aaf398 |
|
|
Karsten Hopp |
aaf398 |
! #include "vim.h"
|
|
Karsten Hopp |
aaf398 |
!
|
|
Karsten Hopp |
aaf398 |
#include <lua.h>
|
|
Karsten Hopp |
aaf398 |
#include <lualib.h>
|
|
Karsten Hopp |
aaf398 |
#include <lauxlib.h>
|
|
Karsten Hopp |
aaf398 |
|
|
Karsten Hopp |
aaf398 |
/* Only do the following when the feature is enabled. Needed for "make
|
|
Karsten Hopp |
aaf398 |
* depend". */
|
|
Karsten Hopp |
aaf398 |
*** ../vim-7.3.100/src/version.c 2011-01-17 19:50:01.000000000 +0100
|
|
Karsten Hopp |
aaf398 |
--- src/version.c 2011-01-17 19:51:40.000000000 +0100
|
|
Karsten Hopp |
aaf398 |
***************
|
|
Karsten Hopp |
aaf398 |
*** 716,717 ****
|
|
Karsten Hopp |
aaf398 |
--- 716,719 ----
|
|
Karsten Hopp |
aaf398 |
{ /* Add new patch number below this line */
|
|
Karsten Hopp |
aaf398 |
+ /**/
|
|
Karsten Hopp |
aaf398 |
+ 101,
|
|
Karsten Hopp |
aaf398 |
/**/
|
|
Karsten Hopp |
aaf398 |
|
|
Karsten Hopp |
aaf398 |
--
|
|
Karsten Hopp |
aaf398 |
In a world without walls and borders, who needs windows and gates?
|
|
Karsten Hopp |
aaf398 |
|
|
Karsten Hopp |
aaf398 |
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
|
Karsten Hopp |
aaf398 |
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
|
Karsten Hopp |
aaf398 |
\\\ an exciting new programming language -- http://www.Zimbu.org ///
|
|
Karsten Hopp |
aaf398 |
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|