- https://github.com/vim/vim-win32-installer/releases/tag/v7.4.1185
- https://github.com/vim/vim-win32-installer/releases/tag/v7.4.1190
- https://github.com/vim/vim-win32-installer/releases/tag/v7.4.1194
- https://github.com/vim/vim-win32-installer/releases/tag/v7.4.1219
- https://github.com/vim/vim-win32-installer/releases/tag/v7.4.1229
- https://github.com/vim/vim-win32-installer/releases/tag/v7.4.1236
- https://github.com/vim/vim-win32-installer/releases/tag/v7.4.1246
- https://github.com/vim/vim-win32-installer/releases/tag/v7.4.1261
- https://github.com/vim/vim-win32-installer/releases/tag/v7.4.1265
- https://github.com/vim/vim-win32-installer/releases/tag/v7.4.1290
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- a/src/if_py_both.h | |
+++ b/src/if_py_both.h | |
@@ -3083,7 +3083,7 @@ ListConcatInPlace(ListObject *self, PyOb | |
} | |
Py_DECREF(lookup_dict); | |
- Py_INCREF(self); | |
+ Py_INCREF((PyObject*)self); | |
return (PyObject *)(self); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!mruby | |
class LCD | |
ID = 0x3E | |
def initialize | |
@i2c = I2c.new(1) | |
end | |
def init |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!mruby | |
class BME680 | |
ID = 0x77 | |
#REG_COEFF3 = 0x00 | |
REG_FIELD0 = 0x1D | |
REG_IDAC_HEAT0 = 0x50 | |
REG_RES_HEAT0 = 0x5A | |
REG_GAS_WAIT0 = 0x64 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/src/errors.h b/src/errors.h | |
index e33f2e66b..c23aac526 100644 | |
--- a/src/errors.h | |
+++ b/src/errors.h | |
@@ -3213,7 +3213,7 @@ EXTERN char e_autoload_import_cannot_use_absolute_or_relative_path[] | |
EXTERN char e_cannot_use_partial_here[] | |
INIT(= N_("E1265: Cannot use a partial here")); | |
#endif | |
-#if defined(FEAT_PYTHON3) && defined(MSWIN) | |
+#if defined(FEAT_PYTHON3) && (defined(MSWIN) || defined(__linux__)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# HG changeset patch | |
# Parent fde93adeda8d91c54211d002010c4476c27e8dcc | |
# Parent 04bb907f937cefc1a013ccdaa2e54569944b57a8 | |
implement 'transparency' for Windows GUI | |
diff --git a/src/gui_w32.c b/src/gui_w32.c | |
--- a/src/gui_w32.c | |
+++ b/src/gui_w32.c | |
@@ -50,6 +50,13 @@ static int gui_mswin_get_menu_height(int | |
# define gui_mswin_get_menu_height(fix_window) 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2010 年から 2021-09-15 時点までの年ごとのコミット数およびパッチ数ランキング | |
日本人と思われる人には行頭に * でマーク | |
2010 7.2.326 - 7.3.094 | |
638 commits | |
25 (Dominique Pelle) | |
12 (Lech Lorens) | |
11 (Sergey Khorev) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/src/Make_cyg_ming.mak b/src/Make_cyg_ming.mak | |
--- a/src/Make_cyg_ming.mak | |
+++ b/src/Make_cyg_ming.mak | |
@@ -177,6 +177,7 @@ CROSS_COMPILE = i586-pc-mingw32msvc- | |
endif | |
DEL = rm | |
MKDIR = mkdir -p | |
+TOUCH = touch | |
DIRSLASH = / | |
else |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <windows.h> | |
int main(int argc, char *argv[]) | |
{ | |
HANDLE hstdin = GetStdHandle(STD_INPUT_HANDLE); | |
HANDLE hstdout = GetStdHandle(STD_OUTPUT_HANDLE); | |
char buf[256]; | |
DWORD cb; | |
ReadFile(hstdin, buf, sizeof(buf), &cb, NULL); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/sakura_lang_en_US/Makefile b/sakura_lang_en_US/Makefile | |
index 0949faa3..4de6510b 100644 | |
--- a/sakura_lang_en_US/Makefile | |
+++ b/sakura_lang_en_US/Makefile | |
@@ -23,6 +23,9 @@ endif | |
# If empty, it will be output to the default directory. | |
OUTDIR = | |
+# The directory where sakura_core is built. | |
+COREBUILDDIR = |
NewerOlder