summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2010-10-27 12:33:17 +0200
committerBram Moolenaar <Bram@vim.org>2010-10-27 12:33:17 +0200
commit264e9fd61b92bbf27c00b95537f6bebbbe5324f6 (patch)
tree731bb027c0ce2ee1e33138b1cbea75ae01501754 /src
parent6b5ef067a548f1995dfb09190eca5a3560c2dad6 (diff)
updated for version 7.3.038v7.3.038
Problem: v:windowid isn't set on MS-Windows. Solution: Set it to the window handle. (Chris Sutcliffe)
Diffstat (limited to 'src')
-rw-r--r--src/gui_w32.c5
-rw-r--r--src/version.c2
2 files changed, 7 insertions, 0 deletions
diff --git a/src/gui_w32.c b/src/gui_w32.c
index 5071423412..f3b9c5bb68 100644
--- a/src/gui_w32.c
+++ b/src/gui_w32.c
@@ -1573,6 +1573,11 @@ gui_mch_init(void)
# endif
#endif
+#ifdef FEAT_EVAL
+ /* set the v:windowid variable */
+ set_vim_var_nr(VV_WINDOWID, (long)s_hwnd);
+#endif
+
theend:
/* Display any pending error messages */
display_errors();
diff --git a/src/version.c b/src/version.c
index ed599f7663..d4244e1c02 100644
--- a/src/version.c
+++ b/src/version.c
@@ -715,6 +715,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 38,
+/**/
37,
/**/
36,