]> git.ipfire.org Git - people/arne_f/ipfire-3.x.git/blame - vim/patches/vim-7.3.038.patch0
Move all packages to root.
[people/arne_f/ipfire-3.x.git] / vim / patches / vim-7.3.038.patch0
CommitLineData
17e7d110
SS
1To: vim_dev@googlegroups.com
2Subject: Patch 7.3.038
3Fcc: outbox
4From: Bram Moolenaar <Bram@moolenaar.net>
5Mime-Version: 1.0
6Content-Type: text/plain; charset=UTF-8
7Content-Transfer-Encoding: 8bit
8------------
9
10Patch 7.3.038
11Problem: v:windowid isn't set on MS-Windows.
12Solution: Set it to the window handle. (Chris Sutcliffe)
13Files: runtime/doc/eval.txt, src/gui_w32.c
14
15
16*** ../vim-7.3.037/runtime/doc/eval.txt 2010-10-20 21:22:17.000000000 +0200
17--- runtime/doc/eval.txt 2010-10-27 12:23:37.000000000 +0200
18***************
19*** 1660,1666 ****
20 *v:windowid* *windowid-variable*
21 v:windowid When any X11 based GUI is running or when running in a
22 terminal and Vim connects to the X server (|-X|) this will be
23! set to the window ID. Otherwise the value is zero.
24
25 ==============================================================================
26 4. Builtin Functions *functions*
27--- 1660,1670 ----
28 *v:windowid* *windowid-variable*
29 v:windowid When any X11 based GUI is running or when running in a
30 terminal and Vim connects to the X server (|-X|) this will be
31! set to the window ID.
32! When an MS-Windows GUI is running this will be set to the
33! window handle.
34! Otherwise the value is zero.
35! Note: for windows inside Vim use |winnr()|.
36
37 ==============================================================================
38 4. Builtin Functions *functions*
39*** ../vim-7.3.037/src/gui_w32.c 2010-10-27 12:15:28.000000000 +0200
40--- src/gui_w32.c 2010-10-27 12:21:22.000000000 +0200
41***************
42*** 1573,1578 ****
43--- 1573,1583 ----
44 # endif
45 #endif
46
47+ #ifdef FEAT_EVAL
48+ /* set the v:windowid variable */
49+ set_vim_var_nr(VV_WINDOWID, (long)s_hwnd);
50+ #endif
51+
52 theend:
53 /* Display any pending error messages */
54 display_errors();
55*** ../vim-7.3.037/src/version.c 2010-10-27 12:17:54.000000000 +0200
56--- src/version.c 2010-10-27 12:24:38.000000000 +0200
57***************
58*** 716,717 ****
59--- 716,719 ----
60 { /* Add new patch number below this line */
61+ /**/
62+ 38,
63 /**/
64
65--
66ARTHUR: What?
67BLACK KNIGHT: None shall pass.
68ARTHUR: I have no quarrel with you, good Sir knight, but I must cross
69 this bridge.
70BLACK KNIGHT: Then you shall die.
71 The Quest for the Holy Grail (Monty Python)
72
73 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
74/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
75\\\ download, build and distribute -- http://www.A-A-P.org ///
76 \\\ help me help AIDS victims -- http://ICCF-Holland.org ///