]> granicus.if.org Git - vim/commitdiff
updated for version 7.3.495 v7.3.495
authorBram Moolenaar <Bram@vim.org>
Mon, 9 Apr 2012 18:42:26 +0000 (20:42 +0200)
committerBram Moolenaar <Bram@vim.org>
Mon, 9 Apr 2012 18:42:26 +0000 (20:42 +0200)
Problem:    Compiler warnings.
Solution:   Add function declaration.  Remove "offset" argument.

src/misc1.c
src/version.c

index 34359a0b0d5505defd55e0d823c1b5ed4799bdea..f9513e2314d9a12e70282736f0c82214c12d5aaf 100644 (file)
@@ -4972,6 +4972,7 @@ static int        cin_isif __ARGS((char_u *));
 static int     cin_iselse __ARGS((char_u *));
 static int     cin_isdo __ARGS((char_u *));
 static int     cin_iswhileofdo __ARGS((char_u *, linenr_T, int));
+static int     cin_is_if_for_while_before_offset __ARGS((char_u *line, int *poffset));
 static int     cin_iswhileofdo_end __ARGS((int terminated, int ind_maxparen, int ind_maxcomment));
 static int     cin_isbreak __ARGS((char_u *));
 static int     cin_is_cpp_baseclass __ARGS((colnr_T *col));
@@ -5771,17 +5772,17 @@ cin_iswhileofdo(p, lnum, ind_maxparen)      /* XXX */
 }
 
 /*
- * Check whether in "p" there is an "if", "for" or "while" before offset.
+ * Check whether in "p" there is an "if", "for" or "while" before "*poffset".
  * Return 0 if there is none.
  * Otherwise return !0 and update "*poffset" to point to the place where the
  * string was found.
  */
     static int
-cin_is_if_for_while_before_offset(line, offset, poffset)
+cin_is_if_for_while_before_offset(line, poffset)
     char_u *line;
-    size_t offset;
     int    *poffset;
 {
+    int offset = *poffset;
 
     if (offset-- < 2)
        return 0;
@@ -5805,8 +5806,8 @@ cin_is_if_for_while_before_offset(line, offset, poffset)
                goto probablyFound;
        }
     }
-
     return 0;
+
 probablyFound:
     if (!offset || !vim_isIDc(line[offset - 1]))
     {
@@ -6890,8 +6891,7 @@ get_c_indent()
                line = ml_get(outermost.lnum);
 
                is_if_for_while =
-                   cin_is_if_for_while_before_offset(line, outermost.col,
-                                                     &outermost.col);
+                   cin_is_if_for_while_before_offset(line, &outermost.col);
            }
 
            amount = skip_label(our_paren_pos.lnum, &look, ind_maxcomment);
index 0d8348b467f03ba79553b3238eff50a1c7767471..65b8c582556ce863495cd12b5d2c785220083e46 100644 (file)
@@ -714,6 +714,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    495,
 /**/
     494,
 /**/