• R/O
  • SSH

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

K.Takata's patch queue for Vim


Commit MetaInfo

Revisión65a84ec6333cdbf6bd25e8d8e4ff5cd989301a3f (tree)
Tiempo2020-11-10 11:04:57
AutorK.Takata <kentkt@csc....>
CommiterK.Takata

Log Message

Add a new patch

Cambiar Resumen

Diferencia incremental

diff -r 28a3bc8673f5 -r 65a84ec6333c series
--- a/series Sat Oct 31 21:12:32 2020 +0900
+++ b/series Tue Nov 10 11:04:57 2020 +0900
@@ -28,4 +28,5 @@
2828 win32-drop-support-for-pre-vista.patch
2929 msvc-use-gf-flag.patch
3030 win32-disable-quickedit-by-mouse.patch
31+vim9-fix-has-gui_running-with-vimdll.patch
3132 fix-config_cache-removal.patch #+rejected
diff -r 28a3bc8673f5 -r 65a84ec6333c vim9-fix-has-gui_running-with-vimdll.patch
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/vim9-fix-has-gui_running-with-vimdll.patch Tue Nov 10 11:04:57 2020 +0900
@@ -0,0 +1,15 @@
1+# HG changeset patch
2+# Parent 78f28c5b284a39bd7d019ddcdd1964087fda7b6f
3+
4+diff --git a/src/evalfunc.c b/src/evalfunc.c
5+--- a/src/evalfunc.c
6++++ b/src/evalfunc.c
7+@@ -5513,7 +5513,7 @@ dynamic_feature(char_u *feature)
8+ #ifdef VIMDLL
9+ || STRICMP(feature, "filterpipe") == 0
10+ #endif
11+-#if defined(FEAT_GUI) && !defined(ALWAYS_USE_GUI)
12++#if defined(FEAT_GUI) && !defined(ALWAYS_USE_GUI) && !defined(VIMDLL)
13+ // this can only change on Unix where the ":gui" command could be
14+ // used.
15+ || (STRICMP(feature, "gui_running") == 0 && !gui.in_use)