diff options
author | David Bürgin <676c7473@gmail.com> | 2015-04-23 18:58:31 +0200 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2015-04-27 04:58:37 -0400 |
commit | 2632dc5890744085e8cb24a644a50f7e32a92c03 (patch) | |
tree | 4738a37175e40cda2a1d2aac2dfa4bdf2dcaed41 /src | |
parent | b52deb6cc81c75ef5bc1a62f2abcaf46e682f323 (diff) | |
download | rneovim-2632dc5890744085e8cb24a644a50f7e32a92c03.tar.gz rneovim-2632dc5890744085e8cb24a644a50f7e32a92c03.tar.bz2 rneovim-2632dc5890744085e8cb24a644a50f7e32a92c03.zip |
vim-patch:7.4.712
Problem: Missing change in another file.
Solution: Also change message.c
https://github.com/vim/vim/releases/tag/v7-4-712
Diffstat (limited to 'src')
-rw-r--r-- | src/nvim/message.c | 3 | ||||
-rw-r--r-- | src/nvim/version.c | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/src/nvim/message.c b/src/nvim/message.c index 52b023dc5e..5efa9f6549 100644 --- a/src/nvim/message.c +++ b/src/nvim/message.c @@ -1450,6 +1450,9 @@ void msg_prt_line(char_u *s, int list) } else if (c == ' ' && trail != NULL && s > trail) { c = lcs_trail; attr = hl_attr(HLF_8); + } else if (c == ' ' && list && lcs_space != NUL) { + c = lcs_space; + attr = hl_attr(HLF_8); } } diff --git a/src/nvim/version.c b/src/nvim/version.c index 1595abffbf..a6a86f09d1 100644 --- a/src/nvim/version.c +++ b/src/nvim/version.c @@ -67,7 +67,7 @@ static char *features[] = { // clang-format off static int included_patches[] = { - //712, + 712, 711, 710, //709, |