mirror of
https://github.com/neovim/neovim.git
synced 2025-09-28 14:08:32 +00:00
vim-patch:8.1.0941: macros for MS-Windows are inconsistent (#20215)
Problem: Macros for MS-Windows are inconsistent, using "32", "3264 and
others.
Solution: Use MSWIN for all MS-Windows builds. Use FEAT_GUI_MSWIN for the
GUI build. (Hirohito Higashi, closes vim/vim#3932)
4f97475d32
This commit is contained in:
@@ -3012,7 +3012,7 @@ static int do_more_prompt(int typed_char)
|
||||
return retval;
|
||||
}
|
||||
|
||||
#if defined(WIN32)
|
||||
#if defined(MSWIN)
|
||||
void mch_errmsg(char *str)
|
||||
{
|
||||
assert(str != NULL);
|
||||
@@ -3039,7 +3039,7 @@ void mch_msg(char *str)
|
||||
xfree(utf16str);
|
||||
}
|
||||
}
|
||||
#endif // WIN32
|
||||
#endif // MSWIN
|
||||
|
||||
/// Put a character on the screen at the current message position and advance
|
||||
/// to the next position. Only for printable ASCII!
|
||||
|
Reference in New Issue
Block a user