packages: vim/7.3.243 (NEW), vim/7.3.244 (NEW) - new

adamg adamg at pld-linux.org
Sat Jul 9 09:07:50 CEST 2011


Author: adamg                        Date: Sat Jul  9 07:07:50 2011 GMT
Module: packages                      Tag: HEAD
---- Log message:
- new

---- Files affected:
packages/vim:
   7.3.243 (NONE -> 1.1)  (NEW)
packages/vim:
   7.3.244 (NONE -> 1.1)  (NEW)

---- Diffs:

================================================================
Index: packages/vim/7.3.243
diff -u /dev/null packages/vim/7.3.243:1.1
--- /dev/null	Sat Jul  9 09:07:50 2011
+++ packages/vim/7.3.243	Sat Jul  9 09:07:45 2011
@@ -0,0 +1,52 @@
+To: vim_dev at googlegroups.com
+Subject: Patch 7.3.243
+Fcc: outbox
+From: Bram Moolenaar <Bram at moolenaar.net>
+Mime-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
+------------
+
+Patch 7.3.243
+Problem:    Illegal memory access in readline().
+Solution:   Swap the conditions. (Dominique Pelle)
+Files:	    src/eval.c
+
+
+*** ../vim-7.3.242/src/eval.c	2011-07-07 16:20:45.000000000 +0200
+--- src/eval.c	2011-07-07 17:32:16.000000000 +0200
+***************
+*** 14318,14324 ****
+  	tolist = 0;
+  	for ( ; filtd < buflen || readlen <= 0; ++filtd)
+  	{
+! 	    if (buf[filtd] == '\n' || readlen <= 0)
+  	    {
+  		/* In binary mode add an empty list item when the last
+  		 * non-empty line ends in a '\n'. */
+--- 14318,14324 ----
+  	tolist = 0;
+  	for ( ; filtd < buflen || readlen <= 0; ++filtd)
+  	{
+! 	    if (readlen <= 0 || buf[filtd] == '\n')
+  	    {
+  		/* In binary mode add an empty list item when the last
+  		 * non-empty line ends in a '\n'. */
+*** ../vim-7.3.242/src/version.c	2011-07-07 17:15:29.000000000 +0200
+--- src/version.c	2011-07-07 17:32:30.000000000 +0200
+***************
+*** 711,712 ****
+--- 711,714 ----
+  {   /* Add new patch number below this line */
++ /**/
++     243,
+  /**/
+
+-- 
+hundred-and-one symptoms of being an internet addict:
+261. You find diskettes in your pockets when doing laundry.
+
+ /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net   \\\
+///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
+\\\  an exciting new programming language -- http://www.Zimbu.org        ///
+ \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///

================================================================
Index: packages/vim/7.3.244
diff -u /dev/null packages/vim/7.3.244:1.1
--- /dev/null	Sat Jul  9 09:07:50 2011
+++ packages/vim/7.3.244	Sat Jul  9 09:07:48 2011
@@ -0,0 +1,48 @@
+To: vim_dev at googlegroups.com
+Subject: Patch 7.3.244
+Fcc: outbox
+From: Bram Moolenaar <Bram at moolenaar.net>
+Mime-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
+------------
+
+Patch 7.3.244
+Problem:    MS-Windows: Build problem with old compiler. (John Beckett)
+Solution:   Only use HandleToLong() when available. (Mike Williams)
+Files:	    src/gui_w32.c
+
+
+*** ../vim-7.3.243/src/gui_w32.c	2011-05-25 21:18:02.000000000 +0200
+--- src/gui_w32.c	2011-07-07 17:42:36.000000000 +0200
+***************
+*** 1574,1579 ****
+--- 1574,1583 ----
+  #endif
+  
+  #ifdef FEAT_EVAL
++ # if _MSC_VER < 1400
++ /* HandleToLong() only exists in compilers that can do 64 bit builds */
++ #  define HandleToLong(h) ((long)(h))
++ # endif
+      /* set the v:windowid variable */
+      set_vim_var_nr(VV_WINDOWID, HandleToLong(s_hwnd));
+  #endif
+*** ../vim-7.3.243/src/version.c	2011-07-07 17:36:52.000000000 +0200
+--- src/version.c	2011-07-07 17:43:21.000000000 +0200
+***************
+*** 711,712 ****
+--- 711,714 ----
+  {   /* Add new patch number below this line */
++ /**/
++     244,
+  /**/
+
+-- 
+hundred-and-one symptoms of being an internet addict:
+262. Your computer has it's own phone line - but your daughter doesn't.
+
+ /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net   \\\
+///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
+\\\  an exciting new programming language -- http://www.Zimbu.org        ///
+ \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
================================================================


More information about the pld-cvs-commit mailing list