]> git.pld-linux.org Git - packages/vim.git/blob - 7.2.328
- new
[packages/vim.git] / 7.2.328
1 To: vim-dev@vim.org
2 Subject: Patch 7.2.328
3 Fcc: outbox
4 From: Bram Moolenaar <Bram@moolenaar.net>
5 Mime-Version: 1.0
6 Content-Type: text/plain; charset=UTF-8
7 Content-Transfer-Encoding: 8bit
8 ------------
9
10 Patch 7.2.328
11 Problem:    has("win64") does not return 1 on 64 bit MS-Windows version.
12 Solution:   Also check for _WIN64 besides WIN64.
13 Files:      src/eval.c
14
15
16 *** ../vim-7.2.327/src/eval.c   2009-12-31 13:18:05.000000000 +0100
17 --- src/eval.c  2010-01-06 16:28:23.000000000 +0100
18 ***************
19 *** 11453,11459 ****
20   #if defined(UNIX) && (defined(__CYGWIN32__) || defined(__CYGWIN__))
21         "win32unix",
22   #endif
23 ! #ifdef WIN64
24         "win64",
25   #endif
26   #ifdef EBCDIC
27 --- 11453,11459 ----
28   #if defined(UNIX) && (defined(__CYGWIN32__) || defined(__CYGWIN__))
29         "win32unix",
30   #endif
31 ! #if defined(WIN64) || defined(_WIN64)
32         "win64",
33   #endif
34   #ifdef EBCDIC
35 *** ../vim-7.2.327/src/version.c        2010-01-06 18:24:53.000000000 +0100
36 --- src/version.c       2010-01-12 12:10:06.000000000 +0100
37 ***************
38 *** 683,684 ****
39 --- 683,686 ----
40   {   /* Add new patch number below this line */
41 + /**/
42 +     328,
43   /**/
44
45 -- 
46 From "know your smileys":
47  :.-(   Crying
48
49  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
50 ///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
51 \\\        download, build and distribute -- http://www.A-A-P.org        ///
52  \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
This page took 0.132763 seconds and 3 git commands to generate.