diff src/message.c @ 23090:fb27d3a7a24b v8.2.2091

patch 8.2.2091: MS-Windows: build warnings Commit: https://github.com/vim/vim/commit/29d2f45c8855fd98897c5db92d896c161e95d0f1 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Dec 4 19:42:52 2020 +0100 patch 8.2.2091: MS-Windows: build warnings Problem: MS-Windows: build warnings. Solution: Add a #pragma to suppress the deprecation warning. (Ken Takata) Avoid using a non-ASCII character. (closes #7421)
author Bram Moolenaar <Bram@vim.org>
date Fri, 04 Dec 2020 19:45:03 +0100
parents 89c324e327c0
children 3239b0f3c592
line wrap: on
line diff
--- 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