[vim/f17: 43/44] - patchlevel 556

Karsten Hopp karsten at fedoraproject.org
Mon Jun 18 09:13:25 UTC 2012


commit ca34cbb68fc73d81ddbcafddafe2642d0242078e
Author: Karsten Hopp <karsten at redhat.com>
Date:   Mon Jun 18 11:09:03 2012 +0200

    - patchlevel 556

 7.3.556 |   70 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 70 insertions(+), 0 deletions(-)
---
diff --git a/7.3.556 b/7.3.556
new file mode 100644
index 0000000..068b8d1
--- /dev/null
+++ b/7.3.556
@@ -0,0 +1,70 @@
+To: vim_dev at googlegroups.com
+Subject: Patch 7.3.556
+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.556
+Problem:    Compiler warnings on 64 bit Windows.
+Solution:   Add type casts. (Mike Williams)
+Files:	    src/misc1.c
+
+
+*** ../vim-7.3.555/src/misc1.c	2012-06-13 17:28:51.000000000 +0200
+--- src/misc1.c	2012-06-14 20:55:47.000000000 +0200
+***************
+*** 445,452 ****
+  	    if (vim_regexec(&regmatch, ml_get(lnum) + lead_len, (colnr_T)0))
+  	    {
+  		pos.lnum = lnum;
+! 		pos.col  = *regmatch.endp - (ml_get(lnum) + lead_len);
+! 		pos.col += lead_len;
+  #ifdef FEAT_VIRTUALEDIT
+  		pos.coladd = 0;
+  #endif
+--- 445,451 ----
+  	    if (vim_regexec(&regmatch, ml_get(lnum) + lead_len, (colnr_T)0))
+  	    {
+  		pos.lnum = lnum;
+! 		pos.col = (colnr_T)(*regmatch.endp - ml_get(lnum));
+  #ifdef FEAT_VIRTUALEDIT
+  		pos.coladd = 0;
+  #endif
+***************
+*** 1354,1360 ****
+  	if (flags & OPENLINE_COM_LIST && second_line_indent > 0)
+  	{
+  	    int i;
+! 	    int padding = second_line_indent - (newindent + STRLEN(leader));
+  
+  	    /* Here whitespace is inserted after the comment char.
+  	     * Below, set_indent(newindent, SIN_INSERT) will insert the
+--- 1353,1360 ----
+  	if (flags & OPENLINE_COM_LIST && second_line_indent > 0)
+  	{
+  	    int i;
+! 	    int padding = second_line_indent
+! 					  - (newindent + (int)STRLEN(leader));
+  
+  	    /* Here whitespace is inserted after the comment char.
+  	     * Below, set_indent(newindent, SIN_INSERT) will insert the
+*** ../vim-7.3.555/src/version.c	2012-06-13 19:19:36.000000000 +0200
+--- src/version.c	2012-06-14 20:54:59.000000000 +0200
+***************
+*** 716,717 ****
+--- 716,719 ----
+  {   /* Add new patch number below this line */
++ /**/
++     556,
+  /**/
+
+-- 
+He who laughs last, thinks slowest.
+
+ /// 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 scm-commits mailing list