diff options
author | Bram Moolenaar <Bram@vim.org> | 2020-12-04 19:42:52 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2020-12-04 19:42:52 +0100 |
commit | 29d2f45c8855fd98897c5db92d896c161e95d0f1 (patch) | |
tree | 87c23be9cda892daedafbdfe8edcdb04d07e5426 /src/message.c | |
parent | c5e6a7179d7dee4315b412b56e172bb1ff092d3e (diff) | |
download | vim-git-29d2f45c8855fd98897c5db92d896c161e95d0f1.tar.gz |
patch 8.2.2091: MS-Windows: build warningsv8.2.2091
Problem: MS-Windows: build warnings.
Solution: Add a #pragma to suppress the deprecation warning. (Ken Takata)
Avoid using a non-ASCII character. (closes #7421)
Diffstat (limited to 'src/message.c')
-rw-r--r-- | src/message.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/message.c b/src/message.c index 3f6d56e5d..43e7e5e52 100644 --- a/src/message.c +++ b/src/message.c @@ -1861,7 +1861,7 @@ msg_prt_line(char_u *s, int list) col += (*mb_ptr2cells)(s); if (l >= MB_MAXBYTES) { - STRCPY(buf, "¿"); + STRCPY(buf, "?"); } else if (lcs_nbsp != NUL && list && (mb_ptr2char(s) == 160 |