aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/message.c
diff options
context:
space:
mode:
authorJan Edmund Lazo <jan.lazo@mail.utoronto.ca>2020-12-05 11:04:48 -0500
committerGitHub <noreply@github.com>2020-12-05 11:04:48 -0500
commit38f4e6541fb5a2421dcc4f0ac1631b3169146268 (patch)
treea0cad567cb6870d5bbaa27c7b04ec0e597ac409c /src/nvim/message.c
parentc348e816fc530f185d799270ad3c39bd0d6799a6 (diff)
downloadrneovim-38f4e6541fb5a2421dcc4f0ac1631b3169146268.tar.gz
rneovim-38f4e6541fb5a2421dcc4f0ac1631b3169146268.tar.bz2
rneovim-38f4e6541fb5a2421dcc4f0ac1631b3169146268.zip
vim-patch:8.2.2091: MS-Windows: build warnings (#13451)
Problem: MS-Windows: build warnings. Solution: Add a #pragma to suppress the deprecation warning. (Ken Takata) Avoid using a non-ASCII character. (closes vim/vim#7421) https://github.com/vim/vim/commit/29d2f45c8855fd98897c5db92d896c161e95d0f1 N/A patches for version.c: vim-patch:8.1.1883: options test fails Problem: Options test fails. Solution: Add entry for 'completepopup'. https://github.com/vim/vim/commit/9513d91be02f654658b8b33ff429a52ff3c4de12 vim-patch:8.2.2089: libvterm test fails to build on Mac Problem: Libvterm test fails to build on Mac. Solution: Adjust configure to remove a space between -L and the path that follows. https://github.com/vim/vim/commit/6cd42db9dc1251b052b97d47bafc063eacac1b3e
Diffstat (limited to 'src/nvim/message.c')
-rw-r--r--src/nvim/message.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/message.c b/src/nvim/message.c
index ad38e6d060..02a7732f5c 100644
--- a/src/nvim/message.c
+++ b/src/nvim/message.c
@@ -1712,7 +1712,7 @@ void msg_prt_line(char_u *s, int list)
col += utf_ptr2cells(s);
char buf[MB_MAXBYTES + 1];
if (l >= MB_MAXBYTES) {
- xstrlcpy(buf, "¿", sizeof(buf));
+ xstrlcpy(buf, "?", sizeof(buf));
} else if (curwin->w_p_lcs_chars.nbsp != NUL && list
&& (utf_ptr2char(s) == 160
|| utf_ptr2char(s) == 0x202f)) {