[vim] - patchlevel 725

Karsten Hopp karsten at fedoraproject.org
Mon Jan 28 11:12:49 UTC 2013


commit 73c4a232993b102de0c7fe1246a64d19e7b27229
Author: Karsten Hopp <karsten at redhat.com>
Date:   Mon Jan 28 12:10:49 2013 +0100

    - patchlevel 725

 7.3.725 |   58 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 58 insertions(+), 0 deletions(-)
---
diff --git a/7.3.725 b/7.3.725
new file mode 100644
index 0000000..a8d20f8
--- /dev/null
+++ b/7.3.725
@@ -0,0 +1,58 @@
+To: vim_dev at googlegroups.com
+Subject: Patch 7.3.725
+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.725
+Problem:    :aboveleft and :belowright have no effect on :copen.
+Solution:   Check for cmdmod.split. (Christian Brabandt)
+Files:	    src/quickfix.c
+
+
+*** ../vim-7.3.724/src/quickfix.c	2012-11-14 22:38:04.000000000 +0100
+--- src/quickfix.c	2012-11-20 17:51:59.000000000 +0100
+***************
+*** 2347,2354 ****
+  	/* The current window becomes the previous window afterwards. */
+  	win = curwin;
+  
+! 	if (eap->cmdidx == CMD_copen || eap->cmdidx == CMD_cwindow)
+! 	    /* Create the new window at the very bottom. */
+  	    win_goto(lastwin);
+  	if (win_split(height, WSP_BELOW | WSP_NEWLOC) == FAIL)
+  	    return;		/* not enough room for window */
+--- 2347,2356 ----
+  	/* The current window becomes the previous window afterwards. */
+  	win = curwin;
+  
+! 	if ((eap->cmdidx == CMD_copen || eap->cmdidx == CMD_cwindow)
+! 		&& cmdmod.split == 0)
+! 	    /* Create the new window at the very bottom, except when
+! 	     * :belowright or :aboveleft is used. */
+  	    win_goto(lastwin);
+  	if (win_split(height, WSP_BELOW | WSP_NEWLOC) == FAIL)
+  	    return;		/* not enough room for window */
+*** ../vim-7.3.724/src/version.c	2012-11-20 17:21:29.000000000 +0100
+--- src/version.c	2012-11-20 17:50:30.000000000 +0100
+***************
+*** 727,728 ****
+--- 727,730 ----
+  {   /* Add new patch number below this line */
++ /**/
++     725,
+  /**/
+
+-- 
+hundred-and-one symptoms of being an internet addict:
+40. You tell the cab driver you live at
+    http://123.elm.street/house/bluetrim.html
+41. You actually try that 123.elm.street address.
+
+ /// 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