[vim] - patchlevel 185

Karsten Hopp karsten at fedoraproject.org
Mon Feb 24 13:15:03 UTC 2014


commit ab940f18dc78604cd43755663d7845be22e56ebd
Author: Karsten Hopp <karsten at redhat.com>
Date:   Mon Feb 24 14:15:43 2014 +0100

    - patchlevel 185

 7.4.185 |   64 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 64 insertions(+), 0 deletions(-)
---
diff --git a/7.4.185 b/7.4.185
new file mode 100644
index 0000000..b326a16
--- /dev/null
+++ b/7.4.185
@@ -0,0 +1,64 @@
+To: vim_dev at googlegroups.com
+Subject: Patch 7.4.185
+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.4.185
+Problem:    Clang gives warnings.
+Solution:   Adjust how bigness is set. (Dominique Pelle)
+Files:      src/ex_cmds.c
+
+
+*** ../vim-7.4.184/src/ex_cmds.c	2014-02-11 12:15:39.781950970 +0100
+--- src/ex_cmds.c	2014-02-22 22:25:45.800904843 +0100
+***************
+*** 4099,4110 ****
+       * 'scroll' */
+      if (eap->forceit)
+  	bigness = curwin->w_height;
+-     else if (firstwin == lastwin)
+- 	bigness = curwin->w_p_scr * 2;
+  #ifdef FEAT_WINDOWS
+!     else
+  	bigness = curwin->w_height - 3;
+  #endif
+      if (bigness < 1)
+  	bigness = 1;
+  
+--- 4099,4110 ----
+       * 'scroll' */
+      if (eap->forceit)
+  	bigness = curwin->w_height;
+  #ifdef FEAT_WINDOWS
+!     else if (firstwin != lastwin)
+  	bigness = curwin->w_height - 3;
+  #endif
++     else
++ 	bigness = curwin->w_p_scr * 2;
+      if (bigness < 1)
+  	bigness = 1;
+  
+*** ../vim-7.4.184/src/version.c	2014-02-22 22:18:39.536905522 +0100
+--- src/version.c	2014-02-22 22:22:51.912905120 +0100
+***************
+*** 740,741 ****
+--- 740,743 ----
+  {   /* Add new patch number below this line */
++ /**/
++     185,
+  /**/
+
+-- 
+There are 2 kinds of people in my world: those who know Unix, Perl, Vim, GNU,
+Linux, etc, and those who know COBOL.  It gets very difficult for me at
+parties, not knowing which group to socialise with :-)
+						Sitaram Chamarty
+
+ /// 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