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
*** src/gui_w32.c Sun Aug 4 23:15:37 2013 | |
--- src/gui_w32.c.mod Thu Nov 21 01:06:34 2013 | |
*************** | |
*** 4223,4228 **** | |
--- 4223,4328 ---- | |
#endif | |
#if defined(FEAT_GUI_TABLINE) || defined(PROTO) | |
+ static tabpage_T* s_tp = NULL; | |
+ static LONG DefTabControlProc; |
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
*** src/gui_w32.c Sun Aug 4 23:15:37 2013 | |
--- src/gui_w32.c.mod Thu Nov 21 19:35:01 2013 | |
*************** | |
*** 4223,4228 **** | |
--- 4223,4257 ---- | |
#endif | |
#if defined(FEAT_GUI_TABLINE) || defined(PROTO) | |
+ static LONG DefTabControlProc; | |
+ static tabpage_T *s_tp = 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
*** src/gui_w32.c Sun Aug 4 23:15:37 2013 | |
--- src/gui_w32.c.mod Fri Nov 22 23:29:22 2013 | |
*************** | |
*** 4241,4246 **** | |
--- 4241,4274 ---- | |
# endif | |
} | |
+ /* | |
+ * Get tabpage_T from POINT |
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
*** src/gui_w32.c Sun Aug 4 23:15:37 2013 | |
--- src/gui_w32.c.mod Sat Nov 23 13:17:17 2013 | |
*************** | |
*** 4241,4246 **** | |
--- 4241,4275 ---- | |
# endif | |
} | |
+ /* | |
+ * Get tabpage_T from POINT. |
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 -r a6552438b5e1 -r be5ec4a1cff3 autoload/tweetvim/action/say.vim | |
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 | |
+++ b/autoload/tweetvim/action/say.vim Sat Dec 14 12:40:44 2013 +0900 | |
@@ -0,0 +1,15 @@ | |
+" | |
+" | |
+" | |
+function! tweetvim#action#say#define() | |
+ return { | |
+ \ 'description' : 'say', |
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/mruby.go b/mruby.go | |
index b06ee72..f685393 100644 | |
--- a/mruby.go | |
+++ b/mruby.go | |
@@ -20,8 +20,7 @@ static int _mrb_fixnum(mrb_value o) { return (int) mrb_fixnum(o); } | |
static float _mrb_float(mrb_value o) { return (float) mrb_float(o); } | |
#cgo CFLAGS: -Imruby/include | |
-#cgo LDFLAGS: -L mruby/build/host/lib -lmruby -lm | |
-#cgo windows LDFLAGS: ./libmruby.dll.a |
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
@echo off | |
echo LIBRARY mruby.dll > mruby.def | |
echo EXPORTS >> mruby.def | |
nm libmruby.a | grep "\ T\ _mrb" | sed s/".*\\ T\\ _"// >> mruby.def | |
gcc -s -mdll -o mruby.dll mruby.def libmruby.a -Wl,--out-implib,libmruby.dll.a |
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/syscalls_windows.go b/syscalls_windows.go | |
index 4c6f941..4de0e5f 100644 | |
--- a/syscalls_windows.go | |
+++ b/syscalls_windows.go | |
@@ -58,4 +58,7 @@ const ( | |
generic_read = 0x80000000 | |
generic_write = 0x40000000 | |
console_textmode_buffer = 0x1 | |
+ | |
+ file_share_read = 0x00000001 |
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 b8f703a4e55fa122b5031ed077ef3eeb49e7feb6 | |
diff -r b8f703a4e55f src/ops.c | |
--- a/src/ops.c Fri Jul 04 16:43:17 2014 +0200 | |
+++ b/src/ops.c Sun Jul 06 14:35:05 2014 +0900 | |
@@ -856,6 +856,18 @@ | |
return FALSE; | |
} | |
OlderNewer