summaryrefslogtreecommitdiffstats
path: root/source/ap/vim/patches/7.3.037
blob: 488934efd34d3a37d2f7dc6dc14480e53bdb2fd4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
To: vim_dev@googlegroups.com
Subject: Patch 7.3.037
Fcc: outbox
From: Bram Moolenaar <Bram@moolenaar.net>
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
------------

Patch 7.3.037
Problem:    Compiler warnings for loss of data. (Mike Williams)
Solution:   Add type casts.
Files:	    src/if_py_both.h, src/getchar.c, src/os_win32.c


*** ../vim-7.3.036/src/if_py_both.h	2010-09-21 16:49:29.000000000 +0200
--- src/if_py_both.h	2010-10-25 20:37:07.000000000 +0200
***************
*** 154,160 ****
      {
  	PyInt len = ptr - str;
  
! 	if (ga_grow(&io_ga, len + 1) == FAIL)
  	    break;
  
  	mch_memmove(((char *)io_ga.ga_data) + io_ga.ga_len, str, (size_t)len);
--- 154,160 ----
      {
  	PyInt len = ptr - str;
  
! 	if (ga_grow(&io_ga, (int)(len + 1)) == FAIL)
  	    break;
  
  	mch_memmove(((char *)io_ga.ga_data) + io_ga.ga_len, str, (size_t)len);
***************
*** 166,175 ****
      }
  
      /* Put the remaining text into io_ga for later printing. */
!     if (n > 0 && ga_grow(&io_ga, n + 1) == OK)
      {
  	mch_memmove(((char *)io_ga.ga_data) + io_ga.ga_len, str, (size_t)n);
! 	io_ga.ga_len += n;
      }
  }
  
--- 166,175 ----
      }
  
      /* Put the remaining text into io_ga for later printing. */
!     if (n > 0 && ga_grow(&io_ga, (int)(n + 1)) == OK)
      {
  	mch_memmove(((char *)io_ga.ga_data) + io_ga.ga_len, str, (size_t)n);
! 	io_ga.ga_len += (int)n;
      }
  }
  
*** ../vim-7.3.036/src/getchar.c	2010-10-22 22:13:47.000000000 +0200
--- src/getchar.c	2010-10-25 20:39:31.000000000 +0200
***************
*** 3922,3928 ****
      if (mapchars != NULL)
      {
  	msg_puts(mapchars);
! 	len = STRLEN(mapchars);
  	vim_free(mapchars);
      }
  
--- 3922,3928 ----
      if (mapchars != NULL)
      {
  	msg_puts(mapchars);
! 	len = (int)STRLEN(mapchars);
  	vim_free(mapchars);
      }
  
*** ../vim-7.3.036/src/os_win32.c	2010-10-24 14:33:38.000000000 +0200
--- src/os_win32.c	2010-10-25 20:38:49.000000000 +0200
***************
*** 224,230 ****
  
      if (exe_path == NULL && exe_name != NULL)
      {
! 	exe_path = vim_strnsave(exe_name, gettail_sep(exe_name) - exe_name);
  	if (exe_path != NULL)
  	{
  	    /* Append our starting directory to $PATH, so that when doing
--- 224,231 ----
  
      if (exe_path == NULL && exe_name != NULL)
      {
! 	exe_path = vim_strnsave(exe_name,
! 				     (int)(gettail_sep(exe_name) - exe_name));
  	if (exe_path != NULL)
  	{
  	    /* Append our starting directory to $PATH, so that when doing
***************
*** 2374,2380 ****
  	/* To avoid a slow failure append "\*" when searching a directory,
  	 * server or network share. */
  	STRCPY(szTrueNameTemp, szTrueName);
! 	slen = strlen(szTrueNameTemp);
  	if (*porig == psepc && slen + 2 < _MAX_PATH)
  	    STRCPY(szTrueNameTemp + slen, "\\*");
  
--- 2375,2381 ----
  	/* To avoid a slow failure append "\*" when searching a directory,
  	 * server or network share. */
  	STRCPY(szTrueNameTemp, szTrueName);
! 	slen = (int)strlen(szTrueNameTemp);
  	if (*porig == psepc && slen + 2 < _MAX_PATH)
  	    STRCPY(szTrueNameTemp + slen, "\\*");
  
*** ../vim-7.3.036/src/version.c	2010-10-27 12:15:28.000000000 +0200
--- src/version.c	2010-10-27 12:16:53.000000000 +0200
***************
*** 716,717 ****
--- 716,719 ----
  {   /* Add new patch number below this line */
+ /**/
+     37,
  /**/

-- 
ARTHUR:  You fight with the strength of many men, Sir knight.
         I am Arthur, King of the Britons.  [pause]
         I seek the finest and the bravest knights in the land to join me
         in my Court of Camelot.  [pause]
         You have proved yourself worthy; will you join me?  [pause]
         You make me sad.  So be it.  Come, Patsy.
BLACK KNIGHT:  None shall pass.
                                  The Quest for the Holy Grail (Monty Python)

 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
\\\        download, build and distribute -- http://www.A-A-P.org        ///
 \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///