]> granicus.if.org Git - vim/commitdiff
updated for version 7.1-034 v7.1.034
authorBram Moolenaar <Bram@vim.org>
Tue, 24 Jul 2007 08:45:13 +0000 (08:45 +0000)
committerBram Moolenaar <Bram@vim.org>
Tue, 24 Jul 2007 08:45:13 +0000 (08:45 +0000)
src/eval.c
src/spell.c
src/version.c

index e22a61d5a9c7b3b033d0fd6bf4e1873326e3fa93..6ce7bef76c68f8bebc925722f5dc381f6ae39e68 100644 (file)
@@ -992,20 +992,20 @@ var_redir_str(value, value_len)
     char_u     *value;
     int                value_len;
 {
-    size_t     len;
+    int                len;
 
     if (redir_lval == NULL)
        return;
 
     if (value_len == -1)
-       len = STRLEN(value);    /* Append the entire string */
+       len = (int)STRLEN(value);       /* Append the entire string */
     else
-       len = value_len;        /* Append only "value_len" characters */
+       len = value_len;                /* Append only "value_len" characters */
 
-    if (ga_grow(&redir_ga, (int)len) == OK)
+    if (ga_grow(&redir_ga, len) == OK)
     {
        mch_memmove((char *)redir_ga.ga_data + redir_ga.ga_len, value, len);
-       redir_ga.ga_len += (int)len;
+       redir_ga.ga_len += len;
     }
     else
        var_redir_stop();
index 4e5e7c6e1ccca60d4587a8b1b1df8d9b7981d1ae..a4c681172793680c132600d82f6ddda1e5ecd603 100644 (file)
@@ -7829,7 +7829,7 @@ put_bytes(fd, nr, len)
 # if (_MSC_VER <= 1200)
 /* This line is required for VC6 without the service pack.  Also see the
  * matching #pragma below. */
-/* # pragma optimize("", off) */
+ #  pragma optimize("", off)
 # endif
 #endif
 
@@ -7859,7 +7859,7 @@ put_sugtime(spin, fd)
 
 #ifdef _MSC_VER
 # if (_MSC_VER <= 1200)
-/* # pragma optimize("", on) */
+ #  pragma optimize("", on)
 # endif
 #endif
 
index 98ecaf88bea3c7004d9f7b29567cae5973cf4cce..e7d9dacaea681824e0ef7559c944548cf60e55f2 100644 (file)
@@ -666,6 +666,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    34,
 /**/
     33,
 /**/