[vim] - patchlevel 302

Karsten Hopp karsten at fedoraproject.org
Tue May 27 11:51:37 UTC 2014


commit a96486004901f27f40a6697bc9cbd36df1ddac9c
Author: Karsten Hopp <karsten at redhat.com>
Date:   Tue May 27 13:47:47 2014 +0200

    - patchlevel 302

 7.4.302 |   78 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 78 insertions(+), 0 deletions(-)
---
diff --git a/7.4.302 b/7.4.302
new file mode 100644
index 0000000..3411f4d
--- /dev/null
+++ b/7.4.302
@@ -0,0 +1,78 @@
+To: vim_dev at googlegroups.com
+Subject: Patch 7.4.302
+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.302
+Problem:    Signs placed with 'foldcolumn' set don't show up after filler
+	    lines.
+Solution:   Take filler lines into account. (Olaf Dabrunz)
+Files:	    src/screen.c
+
+
+*** ../vim-7.4.301/src/screen.c	2014-05-13 20:19:53.573808877 +0200
+--- src/screen.c	2014-05-22 15:27:11.966428633 +0200
+***************
+*** 3553,3563 ****
+  		draw_state = WL_SIGN;
+  		/* Show the sign column when there are any signs in this
+  		 * buffer or when using Netbeans. */
+! 		if (draw_signcolumn(wp)
+! # ifdef FEAT_DIFF
+! 			&& filler_todo <= 0
+! # endif
+! 		   )
+  		{
+  		    int	text_sign;
+  # ifdef FEAT_SIGN_ICONS
+--- 3553,3559 ----
+  		draw_state = WL_SIGN;
+  		/* Show the sign column when there are any signs in this
+  		 * buffer or when using Netbeans. */
+! 		if (draw_signcolumn(wp))
+  		{
+  		    int	text_sign;
+  # ifdef FEAT_SIGN_ICONS
+***************
+*** 3569,3575 ****
+  		    char_attr = hl_attr(HLF_SC);
+  		    n_extra = 2;
+  
+! 		    if (row == startrow)
+  		    {
+  			text_sign = buf_getsigntype(wp->w_buffer, lnum,
+  								   SIGN_TEXT);
+--- 3565,3575 ----
+  		    char_attr = hl_attr(HLF_SC);
+  		    n_extra = 2;
+  
+! 		    if (row == startrow
+! #ifdef FEAT_DIFF
+! 			    + filler_lines && filler_todo <= 0
+! #endif
+! 			    )
+  		    {
+  			text_sign = buf_getsigntype(wp->w_buffer, lnum,
+  								   SIGN_TEXT);
+*** ../vim-7.4.301/src/version.c	2014-05-22 15:17:24.706440568 +0200
+--- src/version.c	2014-05-22 15:46:00.058405705 +0200
+***************
+*** 736,737 ****
+--- 736,739 ----
+  {   /* Add new patch number below this line */
++ /**/
++     302,
+  /**/
+
+-- 
+hundred-and-one symptoms of being an internet addict:
+192. Your boss asks you to "go fer" coffee and you come up with 235 FTP sites.
+
+ /// 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