|
Karsten Hopp |
29404f |
To: vim_dev@googlegroups.com
|
|
Karsten Hopp |
29404f |
Subject: Patch 7.3.1214
|
|
Karsten Hopp |
29404f |
Fcc: outbox
|
|
Karsten Hopp |
29404f |
From: Bram Moolenaar <Bram@moolenaar.net>
|
|
Karsten Hopp |
29404f |
Mime-Version: 1.0
|
|
Karsten Hopp |
29404f |
Content-Type: text/plain; charset=UTF-8
|
|
Karsten Hopp |
29404f |
Content-Transfer-Encoding: 8bit
|
|
Karsten Hopp |
29404f |
------------
|
|
Karsten Hopp |
29404f |
|
|
Karsten Hopp |
29404f |
Patch 7.3.1214
|
|
Karsten Hopp |
29404f |
Problem: Missing declaration for init_users() and realloc_post_list().
|
|
Karsten Hopp |
29404f |
(Salman Halim)
|
|
Karsten Hopp |
29404f |
Solution: Add the declarations.
|
|
Karsten Hopp |
29404f |
Files: src/misc1.c, src/regexp_nfa.c
|
|
Karsten Hopp |
29404f |
|
|
Karsten Hopp |
29404f |
|
|
Karsten Hopp |
29404f |
*** ../vim-7.3.1213/src/misc1.c 2013-06-08 18:19:40.000000000 +0200
|
|
Karsten Hopp |
29404f |
--- src/misc1.c 2013-06-16 22:46:01.000000000 +0200
|
|
Karsten Hopp |
29404f |
***************
|
|
Karsten Hopp |
29404f |
*** 16,21 ****
|
|
Karsten Hopp |
29404f |
--- 16,22 ----
|
|
Karsten Hopp |
29404f |
|
|
Karsten Hopp |
29404f |
static char_u *vim_version_dir __ARGS((char_u *vimdir));
|
|
Karsten Hopp |
29404f |
static char_u *remove_tail __ARGS((char_u *p, char_u *pend, char_u *name));
|
|
Karsten Hopp |
29404f |
+ static void init_users __ARGS((void));
|
|
Karsten Hopp |
29404f |
static int copy_indent __ARGS((int size, char_u *src));
|
|
Karsten Hopp |
29404f |
|
|
Karsten Hopp |
29404f |
/* All user names (for ~user completion as done by shell). */
|
|
Karsten Hopp |
29404f |
***************
|
|
Karsten Hopp |
29404f |
*** 4487,4493 ****
|
|
Karsten Hopp |
29404f |
* Done only once and then cached.
|
|
Karsten Hopp |
29404f |
*/
|
|
Karsten Hopp |
29404f |
static void
|
|
Karsten Hopp |
29404f |
! init_users() {
|
|
Karsten Hopp |
29404f |
static int lazy_init_done = FALSE;
|
|
Karsten Hopp |
29404f |
|
|
Karsten Hopp |
29404f |
if (lazy_init_done)
|
|
Karsten Hopp |
29404f |
--- 4488,4495 ----
|
|
Karsten Hopp |
29404f |
* Done only once and then cached.
|
|
Karsten Hopp |
29404f |
*/
|
|
Karsten Hopp |
29404f |
static void
|
|
Karsten Hopp |
29404f |
! init_users()
|
|
Karsten Hopp |
29404f |
! {
|
|
Karsten Hopp |
29404f |
static int lazy_init_done = FALSE;
|
|
Karsten Hopp |
29404f |
|
|
Karsten Hopp |
29404f |
if (lazy_init_done)
|
|
Karsten Hopp |
29404f |
*** ../vim-7.3.1213/src/regexp_nfa.c 2013-06-16 15:43:43.000000000 +0200
|
|
Karsten Hopp |
29404f |
--- src/regexp_nfa.c 2013-06-16 22:46:35.000000000 +0200
|
|
Karsten Hopp |
29404f |
***************
|
|
Karsten Hopp |
29404f |
*** 273,278 ****
|
|
Karsten Hopp |
29404f |
--- 273,279 ----
|
|
Karsten Hopp |
29404f |
static int nfa_get_reganch __ARGS((nfa_state_T *start, int depth));
|
|
Karsten Hopp |
29404f |
static int nfa_get_regstart __ARGS((nfa_state_T *start, int depth));
|
|
Karsten Hopp |
29404f |
static char_u *nfa_get_match_text __ARGS((nfa_state_T *start));
|
|
Karsten Hopp |
29404f |
+ static int realloc_post_list __ARGS((void));
|
|
Karsten Hopp |
29404f |
static int nfa_recognize_char_class __ARGS((char_u *start, char_u *end, int extra_newl));
|
|
Karsten Hopp |
29404f |
static int nfa_emit_equi_class __ARGS((int c));
|
|
Karsten Hopp |
29404f |
static int nfa_regatom __ARGS((void));
|
|
Karsten Hopp |
29404f |
*** ../vim-7.3.1213/src/version.c 2013-06-16 17:32:33.000000000 +0200
|
|
Karsten Hopp |
29404f |
--- src/version.c 2013-06-16 22:45:31.000000000 +0200
|
|
Karsten Hopp |
29404f |
***************
|
|
Karsten Hopp |
29404f |
*** 730,731 ****
|
|
Karsten Hopp |
29404f |
--- 730,733 ----
|
|
Karsten Hopp |
29404f |
{ /* Add new patch number below this line */
|
|
Karsten Hopp |
29404f |
+ /**/
|
|
Karsten Hopp |
29404f |
+ 1214,
|
|
Karsten Hopp |
29404f |
/**/
|
|
Karsten Hopp |
29404f |
|
|
Karsten Hopp |
29404f |
--
|
|
Karsten Hopp |
29404f |
hundred-and-one symptoms of being an internet addict:
|
|
Karsten Hopp |
29404f |
239. You think "surfing" is something you do on dry land.
|
|
Karsten Hopp |
29404f |
|
|
Karsten Hopp |
29404f |
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
|
Karsten Hopp |
29404f |
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
|
Karsten Hopp |
29404f |
\\\ an exciting new programming language -- http://www.Zimbu.org ///
|
|
Karsten Hopp |
29404f |
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|