r738 - in /trunk/packages/vim: debian/ upstream/patches/

active2-guest at users.alioth.debian.org active2-guest at users.alioth.debian.org
Wed Aug 16 16:25:58 UTC 2006


Author: active2-guest
Date: Wed Aug 16 16:25:57 2006
New Revision: 738

URL: http://svn.debian.org/wsvn/pkg-vim/?sc=1&rev=738
Log:
 * Update to patch 059.

Added:
    trunk/packages/vim/upstream/patches/7.0.052
    trunk/packages/vim/upstream/patches/7.0.053
    trunk/packages/vim/upstream/patches/7.0.054
    trunk/packages/vim/upstream/patches/7.0.055
    trunk/packages/vim/upstream/patches/7.0.056
    trunk/packages/vim/upstream/patches/7.0.057
    trunk/packages/vim/upstream/patches/7.0.058
    trunk/packages/vim/upstream/patches/7.0.059
Modified:
    trunk/packages/vim/debian/README
    trunk/packages/vim/debian/changelog

Modified: trunk/packages/vim/debian/README
URL: http://svn.debian.org/wsvn/pkg-vim/trunk/packages/vim/debian/README?rev=738&op=diff
==============================================================================
--- trunk/packages/vim/debian/README (original)
+++ trunk/packages/vim/debian/README Wed Aug 16 16:25:57 2006
@@ -76,3 +76,11 @@
   2221  7.0.049  some Tcl scripts are not recognized
   1437  7.0.050  can't properly close a buffer through the NetBeans interface
   6097  7.0.051  (after 7.0.44) compile and/or run problem with Perl interface
+  2237  7.0.052  the Vim server may expose more functionality than expected
+  1379  7.0.053  shortening multi-byte directory name may fail
+  2464  7.0.054  using an empty menu name may cause a crash
+  2204  7.0.055  ":startins" in CmdwinEnter autocmd doesn't work immediately
+  1484  7.0.056  can't use "#!" in Vim scripts to make them executable
+  1779  7.0.057  (extra, after 7.0.45) compilation trouble with Borland C 5.5
+  1423  7.0.058  gbk and gb18030 encodings are not recognized
+  2110  7.0.059  Perl interface doesn't compile with ActiveState Perl 5.8.8

Modified: trunk/packages/vim/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-vim/trunk/packages/vim/debian/changelog?rev=738&op=diff
==============================================================================
--- trunk/packages/vim/debian/changelog (original)
+++ trunk/packages/vim/debian/changelog Wed Aug 16 16:25:57 2006
@@ -1,7 +1,7 @@
-vim (1:7.0-051+1) UNRELEASED; urgency=low
+vim (1:7.0-059+1) UNRELEASED; urgency=low
 
   [ Debian Vim Maintainers ]
-  * New upstream patches (036 - 051), see README.gz for details.
+  * New upstream patches (036 - 059), see README.gz for details.
 
   [ James Vega ]
   * Add patches/de.po.diff, which differentiates between "Delete" and
@@ -10,7 +10,7 @@
   * Update patches/scripts.vim.diff to add recognition of rest2web files as
     the filetype 'rst'. (closes: #382541)
 
- -- James Vega <jamessan at debian.org>  Sat, 12 Aug 2006 01:34:23 -0400
+ -- Matthijs Mohlmann <matthijs at cacholong.nl>  Wed, 16 Aug 2006 18:24:57 +0200
 
 vim (1:7.0-035+1) unstable; urgency=low
 

Added: trunk/packages/vim/upstream/patches/7.0.052
URL: http://svn.debian.org/wsvn/pkg-vim/trunk/packages/vim/upstream/patches/7.0.052?rev=738&op=file
==============================================================================
--- trunk/packages/vim/upstream/patches/7.0.052 (added)
+++ trunk/packages/vim/upstream/patches/7.0.052 Wed Aug 16 16:25:57 2006
@@ -1,0 +1,66 @@
+To: vim-dev at vim.org
+Subject: Patch 7.0.052
+Fcc: outbox
+From: Bram Moolenaar <Bram at moolenaar.net>
+Mime-Version: 1.0
+Content-Type: text/plain; charset=ISO-8859-1
+Content-Transfer-Encoding: 8bit
+------------
+
+Patch 7.0.052
+Problem:    The user may not be aware that the Vim server allows others more
+	    functionality than desired.
+Solution:   When running Vim as root don't become a Vim server without an
+	    explicit --servername argument.
+Files:	    src/main.c
+
+
+*** ../vim-7.0.051/src/main.c	Mon Jun 19 10:56:20 2006
+--- src/main.c	Tue Aug  8 11:02:44 2006
+***************
+*** 3212,3221 ****
+       * Register for remote command execution with :serversend and --remote
+       * unless there was a -X or a --servername '' on the command line.
+       * Only register nongui-vim's with an explicit --servername argument.
+       */
+      if (X_DISPLAY != NULL && parmp->servername != NULL && (
+  #  ifdef FEAT_GUI
+! 		gui.in_use ||
+  #  endif
+  		parmp->serverName_arg != NULL))
+      {
+--- 3212,3226 ----
+       * Register for remote command execution with :serversend and --remote
+       * unless there was a -X or a --servername '' on the command line.
+       * Only register nongui-vim's with an explicit --servername argument.
++      * When running as root --servername is also required.
+       */
+      if (X_DISPLAY != NULL && parmp->servername != NULL && (
+  #  ifdef FEAT_GUI
+! 		(gui.in_use
+! #   ifdef UNIX
+! 		 && getuid() != 0
+! #   endif
+! 		) ||
+  #  endif
+  		parmp->serverName_arg != NULL))
+      {
+*** ../vim-7.0.051/src/version.c	Fri Aug 11 22:56:44 2006
+--- src/version.c	Tue Aug 15 21:41:24 2006
+***************
+*** 668,669 ****
+--- 668,671 ----
+  {   /* Add new patch number below this line */
++ /**/
++     52,
+  /**/
+
+-- 
+hundred-and-one symptoms of being an internet addict:
+148. You find it easier to dial-up the National Weather Service
+     Weather/your_town/now.html than to simply look out the window.
+
+ /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net   \\\
+///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
+\\\        download, build and distribute -- http://www.A-A-P.org        ///
+ \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///

Added: trunk/packages/vim/upstream/patches/7.0.053
URL: http://svn.debian.org/wsvn/pkg-vim/trunk/packages/vim/upstream/patches/7.0.053?rev=738&op=file
==============================================================================
--- trunk/packages/vim/upstream/patches/7.0.053 (added)
+++ trunk/packages/vim/upstream/patches/7.0.053 Wed Aug 16 16:25:57 2006
@@ -1,0 +1,53 @@
+To: vim-dev at vim.org
+Subject: Patch 7.0.053
+Fcc: outbox
+From: Bram Moolenaar <Bram at moolenaar.net>
+Mime-Version: 1.0
+Content-Type: text/plain; charset=ISO-8859-1
+Content-Transfer-Encoding: 8bit
+------------
+
+Patch 7.0.053
+Problem:    Shortening a directory name may fail when there are multi-byte
+	    characters.
+Solution:   Copy the correct bytes. (Titov Anatoly)
+Files:	    src/misc1.c
+
+
+*** ../vim-7.0.052/src/misc1.c	Sun Apr 30 20:49:14 2006
+--- src/misc1.c	Tue Aug  8 11:23:45 2006
+***************
+*** 4492,4498 ****
+  		int l = mb_ptr2len(s);
+  
+  		while (--l > 0)
+! 		    *d++ = *s++;
+  	    }
+  # endif
+  	}
+--- 4492,4498 ----
+  		int l = mb_ptr2len(s);
+  
+  		while (--l > 0)
+! 		    *d++ = *++s;
+  	    }
+  # endif
+  	}
+*** ../vim-7.0.052/src/version.c	Tue Aug 15 21:42:18 2006
+--- src/version.c	Tue Aug 15 22:23:44 2006
+***************
+*** 668,669 ****
+--- 668,671 ----
+  {   /* Add new patch number below this line */
++ /**/
++     53,
+  /**/
+
+-- 
+hundred-and-one symptoms of being an internet addict:
+150. You find yourself counting emoticons to get to sleep.
+
+ /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net   \\\
+///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
+\\\        download, build and distribute -- http://www.A-A-P.org        ///
+ \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///

Added: trunk/packages/vim/upstream/patches/7.0.054
URL: http://svn.debian.org/wsvn/pkg-vim/trunk/packages/vim/upstream/patches/7.0.054?rev=738&op=file
==============================================================================
--- trunk/packages/vim/upstream/patches/7.0.054 (added)
+++ trunk/packages/vim/upstream/patches/7.0.054 Wed Aug 16 16:25:57 2006
@@ -1,0 +1,89 @@
+To: vim-dev at vim.org
+Subject: Patch 7.0.054
+Fcc: outbox
+From: Bram Moolenaar <Bram at moolenaar.net>
+Mime-Version: 1.0
+Content-Type: text/plain; charset=ISO-8859-1
+Content-Transfer-Encoding: 8bit
+------------
+
+Patch 7.0.054
+Problem:    Mac: Using a menu name that only has a mnemonic or accelerator
+	    causes a crash.  (Elliot Shank)
+Solution:   Check for an empty menu name.  Also delete empty submenus that
+	    were created before detecting the error.
+Files:	    src/menu.c
+
+
+*** ../vim-7.0.053/src/menu.c	Wed May  3 23:28:47 2006
+--- src/menu.c	Tue Aug  8 20:53:25 2006
+***************
+*** 511,516 ****
+--- 511,524 ----
+  	 * name (without mnemonic and accelerator text). */
+  	next_name = menu_name_skip(name);
+  	dname = menu_text(name, NULL, NULL);
++ 	if (dname == NULL)
++ 	    goto erret;
++ 	if (*dname == NUL)
++ 	{
++ 	    /* Only a mnemonic or accelerator is not valid. */
++ 	    EMSG(_("E792: Empty menu name"));
++ 	    goto erret;
++ 	}
+  
+  	/* See if it's already there */
+  	lower_pri = menup;
+***************
+*** 704,709 ****
+--- 712,718 ----
+  	parent = menu;
+  	name = next_name;
+  	vim_free(dname);
++ 	dname = NULL;
+  	if (pri_tab[pri_idx + 1] != -1)
+  	    ++pri_idx;
+      }
+***************
+*** 793,798 ****
+--- 802,823 ----
+  erret:
+      vim_free(path_name);
+      vim_free(dname);
++ 
++     /* Delete any empty submenu we added before discovering the error.  Repeat
++      * for higher levels. */
++     while (parent != NULL && parent->children == NULL)
++     {
++ 	if (parent->parent == NULL)
++ 	    menup = &root_menu;
++ 	else
++ 	    menup = &parent->parent->children;
++ 	for ( ; *menup != NULL && *menup != parent; menup = &((*menup)->next))
++ 	    ;
++ 	if (*menup == NULL) /* safety check */
++ 	    break;
++ 	parent = parent->parent;
++ 	free_menu(menup);
++     }
+      return FAIL;
+  }
+  
+*** ../vim-7.0.053/src/version.c	Tue Aug 15 22:26:04 2006
+--- src/version.c	Wed Aug 16 15:53:39 2006
+***************
+*** 668,669 ****
+--- 668,671 ----
+  {   /* Add new patch number below this line */
++ /**/
++     54,
+  /**/
+
+-- 
+hundred-and-one symptoms of being an internet addict:
+156. You forget your friend's name but not her e-mail address.
+
+ /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net   \\\
+///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
+\\\        download, build and distribute -- http://www.A-A-P.org        ///
+ \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///

Added: trunk/packages/vim/upstream/patches/7.0.055
URL: http://svn.debian.org/wsvn/pkg-vim/trunk/packages/vim/upstream/patches/7.0.055?rev=738&op=file
==============================================================================
--- trunk/packages/vim/upstream/patches/7.0.055 (added)
+++ trunk/packages/vim/upstream/patches/7.0.055 Wed Aug 16 16:25:57 2006
@@ -1,0 +1,71 @@
+To: vim-dev at vim.org
+Subject: Patch 7.0.055
+Fcc: outbox
+From: Bram Moolenaar <Bram at moolenaar.net>
+Mime-Version: 1.0
+Content-Type: text/plain; charset=ISO-8859-1
+Content-Transfer-Encoding: 8bit
+------------
+
+Patch 7.0.055
+Problem:    ":startinsert" in a CmdwinEnter autocommand doesn't take immediate
+	    effect. (Bradley White)
+Solution:   Put a NOP key in the typeahead buffer.  Also avoid that using
+	    CTRL-C to go back to the command line moves the cursor left.
+Files:	    src/edit.c, src/ex_getln.c
+
+
+*** ../vim-7.0.054/src/edit.c	Fri Jun 23 21:36:49 2006
+--- src/edit.c	Wed Aug 16 16:17:29 2006
+***************
+*** 882,887 ****
+--- 882,888 ----
+  		/* Close the cmdline window. */
+  		cmdwin_result = K_IGNORE;
+  		got_int = FALSE; /* don't stop executing autocommands et al. */
++ 		nomove = TRUE;
+  		goto doESCkey;
+  	    }
+  #endif
+***************
+*** 2414,2419 ****
+--- 2415,2421 ----
+      compl_matches = ins_compl_make_cyclic();
+      compl_started = TRUE;
+      compl_used_match = TRUE;
++     compl_cont_status = 0;
+  
+      compl_curr_match = compl_first_match;
+      ins_complete(Ctrl_N);
+*** ../vim-7.0.054/src/ex_getln.c	Sun Apr 30 20:43:17 2006
+--- src/ex_getln.c	Wed Aug 16 16:07:04 2006
+***************
+*** 5982,5987 ****
+--- 5982,5989 ----
+      typestr[0] = cmdwin_type;
+      typestr[1] = NUL;
+      apply_autocmds(EVENT_CMDWINENTER, typestr, typestr, FALSE, curbuf);
++     if (restart_edit != 0)	/* autocmd with ":startinsert" */
++ 	stuffcharReadbuff(K_NOP);
+  # endif
+  
+      i = RedrawingDisabled;
+*** ../vim-7.0.054/src/version.c	Wed Aug 16 15:56:58 2006
+--- src/version.c	Wed Aug 16 16:21:45 2006
+***************
+*** 668,669 ****
+--- 668,671 ----
+  {   /* Add new patch number below this line */
++ /**/
++     55,
+  /**/
+
+-- 
+hundred-and-one symptoms of being an internet addict:
+157. You fum through a magazine, you first check to see if it has a web
+     address.
+
+ /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net   \\\
+///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
+\\\        download, build and distribute -- http://www.A-A-P.org        ///
+ \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///

Added: trunk/packages/vim/upstream/patches/7.0.056
URL: http://svn.debian.org/wsvn/pkg-vim/trunk/packages/vim/upstream/patches/7.0.056?rev=738&op=file
==============================================================================
--- trunk/packages/vim/upstream/patches/7.0.056 (added)
+++ trunk/packages/vim/upstream/patches/7.0.056 Wed Aug 16 16:25:57 2006
@@ -1,0 +1,49 @@
+To: vim-dev at vim.org
+Subject: Patch 7.0.056
+Fcc: outbox
+From: Bram Moolenaar <Bram at moolenaar.net>
+Mime-Version: 1.0
+Content-Type: text/plain; charset=ISO-8859-1
+Content-Transfer-Encoding: 8bit
+------------
+
+Patch 7.0.056
+Problem:    "#!something" gives an error message.
+Solution:   Ignore this line, so that it can be used in an executable Vim
+            script.
+Files:      src/ex_docmd.c
+
+
+*** ../vim-7.0.055/src/ex_docmd.c	Sat May 13 12:36:18 2006
+--- src/ex_docmd.c	Thu Aug 10 23:50:32 2006
+***************
+*** 1709,1714 ****
+--- 1712,1721 ----
+       */
+      save_cmdmod = cmdmod;
+      vim_memset(&cmdmod, 0, sizeof(cmdmod));
++ 
++     /* "#!anything" is handled like a comment. */
++     if ((*cmdlinep)[0] == '#' && (*cmdlinep)[1] == '!')
++ 	goto doend;
+  
+      /*
+       * Repeat until no more command modifiers are found.
+*** ../vim-7.0.055/src/version.c	Wed Aug 16 16:24:58 2006
+--- src/version.c	Wed Aug 16 17:05:35 2006
+***************
+*** 668,669 ****
+--- 668,671 ----
+  {   /* Add new patch number below this line */
++ /**/
++     56,
+  /**/
+
+-- 
+hundred-and-one symptoms of being an internet addict:
+158. You get a tuner card so you can watch TV while surfing.
+
+ /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net   \\\
+///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
+\\\        download, build and distribute -- http://www.A-A-P.org        ///
+ \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///

Added: trunk/packages/vim/upstream/patches/7.0.057
URL: http://svn.debian.org/wsvn/pkg-vim/trunk/packages/vim/upstream/patches/7.0.057?rev=738&op=file
==============================================================================
--- trunk/packages/vim/upstream/patches/7.0.057 (added)
+++ trunk/packages/vim/upstream/patches/7.0.057 Wed Aug 16 16:25:57 2006
@@ -1,0 +1,74 @@
+To: vim-dev at vim.org
+Subject: Patch 7.0.057 (extra)
+Fcc: outbox
+From: Bram Moolenaar <Bram at moolenaar.net>
+Mime-Version: 1.0
+Content-Type: text/plain; charset=ISO-8859-1
+Content-Transfer-Encoding: 8bit
+------------
+
+Patch 7.0.057 (extra, after 7.0.45)
+Problem:    Win32: Compilation problem with Borland C 5.5.
+Solution:   Include vim.h as before. (Mark S. Williams)
+Files:	    src/if_ole.cpp
+
+
+*** ../vim-7.0.056/src/if_ole.cpp	Tue Aug  8 17:06:21 2006
+--- src/if_ole.cpp	Sun Aug 13 12:57:24 2006
+***************
+*** 13,26 ****
+   * See os_mswin.c for the client side.
+   */
+  
+  extern "C" {
+! #include "vim.h"
+  }
+  
+  #include <windows.h>
+  #include <oleauto.h>
+  
+  extern "C" {
+  extern HWND s_hwnd;
+  extern HWND vim_parent_hwnd;
+  }
+--- 13,35 ----
+   * See os_mswin.c for the client side.
+   */
+  
++ /*
++  * We have some trouble with order of includes here.  For Borland it needs to
++  * be different from MSVC...
++  */
++ #ifndef __BORLANDC__
+  extern "C" {
+! # include "vim.h"
+  }
++ #endif
+  
+  #include <windows.h>
+  #include <oleauto.h>
+  
+  extern "C" {
++ #ifdef __BORLANDC__
++ # include "vim.h"
++ #endif
+  extern HWND s_hwnd;
+  extern HWND vim_parent_hwnd;
+  }
+*** ../vim-7.0.056/src/version.c	Wed Aug 16 17:06:22 2006
+--- src/version.c	Wed Aug 16 17:35:57 2006
+***************
+*** 668,669 ****
+--- 668,671 ----
+  {   /* Add new patch number below this line */
++ /**/
++     57,
+  /**/
+
+-- 
+Send $25.00 for handy leaflet on how to make money by selling leaflets
+
+ /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net   \\\
+///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
+\\\        download, build and distribute -- http://www.A-A-P.org        ///
+ \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///

Added: trunk/packages/vim/upstream/patches/7.0.058
URL: http://svn.debian.org/wsvn/pkg-vim/trunk/packages/vim/upstream/patches/7.0.058?rev=738&op=file
==============================================================================
--- trunk/packages/vim/upstream/patches/7.0.058 (added)
+++ trunk/packages/vim/upstream/patches/7.0.058 Wed Aug 16 16:25:57 2006
@@ -1,0 +1,46 @@
+To: vim-dev at vim.org
+Subject: Patch 7.0.058
+Fcc: outbox
+From: Bram Moolenaar <Bram at moolenaar.net>
+Mime-Version: 1.0
+Content-Type: text/plain; charset=ISO-8859-1
+Content-Transfer-Encoding: 8bit
+------------
+
+Patch 7.0.058
+Problem:    The gbk and and gb18030 encodings are not recognized.
+Solution:   Add aliases to cp936. (Edward L. Fox)
+Files:	    src/mbyte.c
+
+
+*** ../vim-7.0.057/src/mbyte.c	Sat May 13 17:10:00 2006
+--- src/mbyte.c	Sat Aug 12 22:59:55 2006
+***************
+*** 363,368 ****
+--- 363,370 ----
+      {"932",		IDX_CP932},
+      {"949",		IDX_CP949},
+      {"936",		IDX_CP936},
++     {"gbk",		IDX_CP936},
++     {"gb18030",		IDX_CP936},	/* only 99% the same */
+      {"950",		IDX_CP950},
+      {"eucjp",		IDX_EUC_JP},
+      {"unix-jis",	IDX_EUC_JP},
+*** ../vim-7.0.057/src/version.c	Wed Aug 16 17:36:21 2006
+--- src/version.c	Wed Aug 16 18:04:14 2006
+***************
+*** 668,669 ****
+--- 668,671 ----
+  {   /* Add new patch number below this line */
++ /**/
++     58,
+  /**/
+
+-- 
+hundred-and-one symptoms of being an internet addict:
+162. You go outside and look for a brightness knob to turn down the sun.
+
+ /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net   \\\
+///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
+\\\        download, build and distribute -- http://www.A-A-P.org        ///
+ \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///

Added: trunk/packages/vim/upstream/patches/7.0.059
URL: http://svn.debian.org/wsvn/pkg-vim/trunk/packages/vim/upstream/patches/7.0.059?rev=738&op=file
==============================================================================
--- trunk/packages/vim/upstream/patches/7.0.059 (added)
+++ trunk/packages/vim/upstream/patches/7.0.059 Wed Aug 16 16:25:57 2006
@@ -1,0 +1,55 @@
+To: vim-dev at vim.org
+Subject: Patch 7.0.059
+Fcc: outbox
+From: Bram Moolenaar <Bram at moolenaar.net>
+Mime-Version: 1.0
+Content-Type: text/plain; charset=ISO-8859-1
+Content-Transfer-Encoding: 8bit
+------------
+
+Patch 7.0.059
+Problem:    The Perl interface doesn't compile with ActiveState Perl 5.8.8.
+Solution:   Remove the __attribute__() items. (Edward L. Fox)
+Files:	    src/if_perl.xs
+
+
+*** ../vim-7.0.058/src/if_perl.xs	Fri Aug 11 22:56:44 2006
+--- src/if_perl.xs	Wed Aug 16 14:45:15 2006
+***************
+*** 155,162 ****
+  static int (*perl_run)(PerlInterpreter*);
+  static int (*perl_parse)(PerlInterpreter*, XSINIT_t, int, char**, char**);
+  static void* (*Perl_get_context)(void);
+! static void (*Perl_croak)(pTHX_ const char*, ...) __attribute__((noreturn));
+! static void (*Perl_croak_nocontext)(const char*, ...) __attribute__((noreturn));
+  static I32 (*Perl_dowantarray)(pTHX);
+  static void (*Perl_free_tmps)(pTHX);
+  static HV* (*Perl_gv_stashpv)(pTHX_ const char*, I32);
+--- 155,162 ----
+  static int (*perl_run)(PerlInterpreter*);
+  static int (*perl_parse)(PerlInterpreter*, XSINIT_t, int, char**, char**);
+  static void* (*Perl_get_context)(void);
+! static void (*Perl_croak)(pTHX_ const char*, ...);
+! static void (*Perl_croak_nocontext)(const char*, ...);
+  static I32 (*Perl_dowantarray)(pTHX);
+  static void (*Perl_free_tmps)(pTHX);
+  static HV* (*Perl_gv_stashpv)(pTHX_ const char*, I32);
+*** ../vim-7.0.058/src/version.c	Wed Aug 16 18:05:36 2006
+--- src/version.c	Wed Aug 16 18:18:35 2006
+***************
+*** 668,669 ****
+--- 668,671 ----
+  {   /* Add new patch number below this line */
++ /**/
++     59,
+  /**/
+
+-- 
+hundred-and-one symptoms of being an internet addict:
+163. You go outside for the fresh air (at -30 degrees) but open the
+     window first to hear new mail arrive.
+
+ /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net   \\\
+///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
+\\\        download, build and distribute -- http://www.A-A-P.org        ///
+ \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///




More information about the pkg-vim-maintainers mailing list