changeset 6781:f2a751a9ee72 v7.4.712

patch 7.4.712 Problem: Missing change in another file. Solution: Also change message.c
author Bram Moolenaar <bram@vim.org>
date Wed, 22 Apr 2015 22:18:22 +0200
parents 3790fb70e04c
children 18d84ed365a5
files src/message.c src/version.c
diffstat 2 files changed, 7 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/src/message.c
+++ b/src/message.c
@@ -1761,6 +1761,11 @@ msg_prt_line(s, list)
 		c = lcs_trail;
 		attr = hl_attr(HLF_8);
 	    }
+	    else if (c == ' ' && list && lcs_space != NUL)
+	    {
+		c = lcs_space;
+		attr = hl_attr(HLF_8);
+	    }
 	}
 
 	if (c == NUL)
--- a/src/version.c
+++ b/src/version.c
@@ -742,6 +742,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    712,
+/**/
     711,
 /**/
     710,