diff src/message.c @ 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 e13f8073c9f9
children 47ebd4065059
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)