|
Karsten Hopp |
66f56d |
To: vim_dev@googlegroups.com
|
|
Karsten Hopp |
66f56d |
Subject: Patch 7.3.206
|
|
Karsten Hopp |
66f56d |
Fcc: outbox
|
|
Karsten Hopp |
66f56d |
From: Bram Moolenaar <Bram@moolenaar.net>
|
|
Karsten Hopp |
66f56d |
Mime-Version: 1.0
|
|
Karsten Hopp |
66f56d |
Content-Type: text/plain; charset=UTF-8
|
|
Karsten Hopp |
66f56d |
Content-Transfer-Encoding: 8bit
|
|
Karsten Hopp |
66f56d |
------------
|
|
Karsten Hopp |
66f56d |
|
|
Karsten Hopp |
66f56d |
Patch 7.3.206
|
|
Karsten Hopp |
66f56d |
Problem: 64bit MS-Windows compiler warning.
|
|
Karsten Hopp |
66f56d |
Solution: Use HandleToLong() instead of type cast. (Mike Williams)
|
|
Karsten Hopp |
66f56d |
Files: src/gui_w32.c
|
|
Karsten Hopp |
66f56d |
|
|
Karsten Hopp |
66f56d |
|
|
Karsten Hopp |
66f56d |
*** ../mercurial/vim73/src/gui_w32.c 2011-01-17 20:08:04.000000000 +0100
|
|
Karsten Hopp |
66f56d |
--- src/gui_w32.c 2011-05-25 21:14:10.000000000 +0200
|
|
Karsten Hopp |
66f56d |
***************
|
|
Karsten Hopp |
66f56d |
*** 1575,1581 ****
|
|
Karsten Hopp |
66f56d |
|
|
Karsten Hopp |
66f56d |
#ifdef FEAT_EVAL
|
|
Karsten Hopp |
66f56d |
/* set the v:windowid variable */
|
|
Karsten Hopp |
66f56d |
! set_vim_var_nr(VV_WINDOWID, (long)s_hwnd);
|
|
Karsten Hopp |
66f56d |
#endif
|
|
Karsten Hopp |
66f56d |
|
|
Karsten Hopp |
66f56d |
theend:
|
|
Karsten Hopp |
66f56d |
--- 1575,1581 ----
|
|
Karsten Hopp |
66f56d |
|
|
Karsten Hopp |
66f56d |
#ifdef FEAT_EVAL
|
|
Karsten Hopp |
66f56d |
/* set the v:windowid variable */
|
|
Karsten Hopp |
66f56d |
! set_vim_var_nr(VV_WINDOWID, HandleToLong(s_hwnd));
|
|
Karsten Hopp |
66f56d |
#endif
|
|
Karsten Hopp |
66f56d |
|
|
Karsten Hopp |
66f56d |
theend:
|
|
Karsten Hopp |
66f56d |
*** ../vim-7.3.205/src/version.c 2011-05-25 17:56:23.000000000 +0200
|
|
Karsten Hopp |
66f56d |
--- src/version.c 2011-05-25 21:16:17.000000000 +0200
|
|
Karsten Hopp |
66f56d |
***************
|
|
Karsten Hopp |
66f56d |
*** 711,712 ****
|
|
Karsten Hopp |
66f56d |
--- 711,714 ----
|
|
Karsten Hopp |
66f56d |
{ /* Add new patch number below this line */
|
|
Karsten Hopp |
66f56d |
+ /**/
|
|
Karsten Hopp |
66f56d |
+ 206,
|
|
Karsten Hopp |
66f56d |
/**/
|
|
Karsten Hopp |
66f56d |
|
|
Karsten Hopp |
66f56d |
--
|
|
Karsten Hopp |
66f56d |
FIXME and XXX are two common keywords used to mark broken or incomplete code
|
|
Karsten Hopp |
66f56d |
not only since XXX as a sex reference would grab everybody's attention but
|
|
Karsten Hopp |
66f56d |
simply due to the fact that Vim would highlight these words.
|
|
Karsten Hopp |
66f56d |
-- Hendrik Scholz
|
|
Karsten Hopp |
66f56d |
|
|
Karsten Hopp |
66f56d |
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
|
Karsten Hopp |
66f56d |
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
|
Karsten Hopp |
66f56d |
\\\ an exciting new programming language -- http://www.Zimbu.org ///
|
|
Karsten Hopp |
66f56d |
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|