mirror of
https://github.com/vim/vim.git
synced 2025-09-23 03:43:49 -04:00
patch 8.2.4079: MS-Windows: "gvim --version" didn't work with VIMDLL
Problem: MS-Windows: "gvim --version" didn't work when build with VIMDLL. Solution: Adjust #ifdef. (Ken Takata, closes #9517)
This commit is contained in:
@@ -2004,7 +2004,7 @@ command_line_scan(mparm_T *parmp)
|
||||
{
|
||||
Columns = 80; // need to init Columns
|
||||
info_message = TRUE; // use mch_msg(), not mch_errmsg()
|
||||
#if defined(FEAT_GUI) && !defined(ALWAYS_USE_GUI)
|
||||
#if defined(FEAT_GUI) && !defined(ALWAYS_USE_GUI) && !defined(VIMDLL)
|
||||
gui.starting = FALSE; // not starting GUI, will exit
|
||||
#endif
|
||||
list_version();
|
||||
|
Reference in New Issue
Block a user