diff options
author | Bram Moolenaar <Bram@vim.org> | 2012-04-06 13:56:04 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2012-04-06 13:56:04 +0200 |
commit | b0d7a15d3aedc3247be53a7ff8c1f540fa043906 (patch) | |
tree | 66740a8f729c369ab0fdda2fa1a4d288efb5d5f2 /src | |
parent | 5b435d671e5287975398316b8aa8000c96e6ec92 (diff) | |
download | vim-b0d7a15d3aedc3247be53a7ff8c1f540fa043906.zip |
updated for version 7.3.493
Problem: Two unused variables.
Solution: Remove them. (Hong Xu)
Diffstat (limited to 'src')
-rw-r--r-- | src/misc1.c | 2 | ||||
-rw-r--r-- | src/version.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/misc1.c b/src/misc1.c index ddb888933..34359a0b0 100644 --- a/src/misc1.c +++ b/src/misc1.c @@ -6489,7 +6489,6 @@ get_c_indent() int cont_amount = 0; /* amount for continuation line */ int original_line_islabel; int added_to_amount = 0; - int is_if_for_while = 0; for (options = curbuf->b_p_cino; *options; ) { @@ -6876,7 +6875,6 @@ get_c_indent() pos_T cursor_save = curwin->w_cursor; pos_T outermost; char_u *line; - int look_col; trypos = &our_paren_pos; do { diff --git a/src/version.c b/src/version.c index 25cbb1841..e5102e53b 100644 --- a/src/version.c +++ b/src/version.c @@ -715,6 +715,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 493, +/**/ 492, /**/ 491, |