|
Karsten Hopp |
a01f5c |
To: vim_dev@googlegroups.com
|
|
Karsten Hopp |
a01f5c |
Subject: Patch 7.3.10
|
|
Karsten Hopp |
a01f5c |
Fcc: outbox
|
|
Karsten Hopp |
a01f5c |
From: Bram Moolenaar <Bram@moolenaar.net>
|
|
Karsten Hopp |
a01f5c |
Mime-Version: 1.0
|
|
Karsten Hopp |
a01f5c |
Content-Type: text/plain; charset=UTF-8
|
|
Karsten Hopp |
a01f5c |
Content-Transfer-Encoding: 8bit
|
|
Karsten Hopp |
a01f5c |
------------
|
|
Karsten Hopp |
a01f5c |
|
|
Karsten Hopp |
a01f5c |
Patch 7.3.1081
|
|
Karsten Hopp |
a01f5c |
Problem: Compiler warnings on 64-bit Windows.
|
|
Karsten Hopp |
a01f5c |
Solution: Change variable types. (Mike Williams)
|
|
Karsten Hopp |
a01f5c |
Files: src/if_py_both.h, src/regexp_nfa.c
|
|
Karsten Hopp |
a01f5c |
|
|
Karsten Hopp |
a01f5c |
|
|
Karsten Hopp |
a01f5c |
*** ../vim-7.3.1080/src/if_py_both.h 2013-05-30 22:06:28.000000000 +0200
|
|
Karsten Hopp |
a01f5c |
--- src/if_py_both.h 2013-05-31 20:39:37.000000000 +0200
|
|
Karsten Hopp |
a01f5c |
***************
|
|
Karsten Hopp |
a01f5c |
*** 1100,1106 ****
|
|
Karsten Hopp |
a01f5c |
long_u ht_used;
|
|
Karsten Hopp |
a01f5c |
hashtab_T *ht;
|
|
Karsten Hopp |
a01f5c |
hashitem_T *hi;
|
|
Karsten Hopp |
a01f5c |
! int todo;
|
|
Karsten Hopp |
a01f5c |
} dictiterinfo_T;
|
|
Karsten Hopp |
a01f5c |
|
|
Karsten Hopp |
a01f5c |
static PyObject *
|
|
Karsten Hopp |
a01f5c |
--- 1100,1106 ----
|
|
Karsten Hopp |
a01f5c |
long_u ht_used;
|
|
Karsten Hopp |
a01f5c |
hashtab_T *ht;
|
|
Karsten Hopp |
a01f5c |
hashitem_T *hi;
|
|
Karsten Hopp |
a01f5c |
! long_u todo;
|
|
Karsten Hopp |
a01f5c |
} dictiterinfo_T;
|
|
Karsten Hopp |
a01f5c |
|
|
Karsten Hopp |
a01f5c |
static PyObject *
|
|
Karsten Hopp |
a01f5c |
*** ../vim-7.3.1080/src/regexp_nfa.c 2013-05-30 22:43:57.000000000 +0200
|
|
Karsten Hopp |
a01f5c |
--- src/regexp_nfa.c 2013-05-31 20:45:03.000000000 +0200
|
|
Karsten Hopp |
a01f5c |
***************
|
|
Karsten Hopp |
a01f5c |
*** 283,289 ****
|
|
Karsten Hopp |
a01f5c |
static int
|
|
Karsten Hopp |
a01f5c |
realloc_post_list()
|
|
Karsten Hopp |
a01f5c |
{
|
|
Karsten Hopp |
a01f5c |
! int nstate_max = post_end - post_start;
|
|
Karsten Hopp |
a01f5c |
int new_max = nstate_max + 1000;
|
|
Karsten Hopp |
a01f5c |
int *new_start;
|
|
Karsten Hopp |
a01f5c |
int *old_start;
|
|
Karsten Hopp |
a01f5c |
--- 283,289 ----
|
|
Karsten Hopp |
a01f5c |
static int
|
|
Karsten Hopp |
a01f5c |
realloc_post_list()
|
|
Karsten Hopp |
a01f5c |
{
|
|
Karsten Hopp |
a01f5c |
! int nstate_max = (int)(post_end - post_start);
|
|
Karsten Hopp |
a01f5c |
int new_max = nstate_max + 1000;
|
|
Karsten Hopp |
a01f5c |
int *new_start;
|
|
Karsten Hopp |
a01f5c |
int *old_start;
|
|
Karsten Hopp |
a01f5c |
*** ../vim-7.3.1080/src/version.c 2013-05-31 19:01:13.000000000 +0200
|
|
Karsten Hopp |
a01f5c |
--- src/version.c 2013-05-31 20:40:19.000000000 +0200
|
|
Karsten Hopp |
a01f5c |
***************
|
|
Karsten Hopp |
a01f5c |
*** 730,731 ****
|
|
Karsten Hopp |
a01f5c |
--- 730,733 ----
|
|
Karsten Hopp |
a01f5c |
{ /* Add new patch number below this line */
|
|
Karsten Hopp |
a01f5c |
+ /**/
|
|
Karsten Hopp |
a01f5c |
+ 1081,
|
|
Karsten Hopp |
a01f5c |
/**/
|
|
Karsten Hopp |
a01f5c |
|
|
Karsten Hopp |
a01f5c |
--
|
|
Karsten Hopp |
a01f5c |
hundred-and-one symptoms of being an internet addict:
|
|
Karsten Hopp |
a01f5c |
32. You don't know what sex three of your closest friends are, because they
|
|
Karsten Hopp |
a01f5c |
have neutral nicknames and you never bothered to ask.
|
|
Karsten Hopp |
a01f5c |
normal GA<CR><Esc>
|
|
Karsten Hopp |
a01f5c |
|
|
Karsten Hopp |
a01f5c |
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
|
Karsten Hopp |
a01f5c |
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
|
Karsten Hopp |
a01f5c |
\\\ an exciting new programming language -- http://www.Zimbu.org ///
|
|
Karsten Hopp |
a01f5c |
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|