NSIS: Fix 32-bit context menu
Commit:
https://github.com/vim/vim/commit/905312e0e6a2f7982b9b0ff19f26cc19a7226abd
Author: K.Takata <
ken...@csc.jp>
Date: Sun May 31 18:46:40 2026 +0000
NSIS: Fix 32-bit context menu
The 32-bit context menu was not translated after 8ae45e420218f5ed913c6b99cbccce99245ea97c.
NSIS requires a space after a `!`.
closes: #20396
Signed-off-by: K.Takata <
ken...@csc.jp>
Signed-off-by: Christian Brabandt <
c...@256bit.org>
diff --git a/nsis/gvim.nsi b/nsis/gvim.nsi
index 3d4800886..02751ce90 100644
--- a/nsis/gvim.nsi
+++ b/nsis/gvim.nsi
@@ -638,7 +638,7 @@ SectionGroupEnd
!undef LIBRARY_X64
${EndIf}
- !if !${ARM64}
+ !if ! ${ARM64}
# Install DLLs for 32-bit gvimext.dll into the GvimExt32 directory.
SetOutPath $0\GvimExt32
ClearErrors