From c047b9a49f5877766ae9c2dc86c59f4af1498ec1 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Sat, 11 Feb 2012 20:40:55 +0100 Subject: updated for version 7.3.435 Problem: Compiler warning for unused variable. Solution: Move the variable inside #ifdef. --- src/ex_cmds2.c | 4 +++- src/version.c | 2 ++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/src/ex_cmds2.c b/src/ex_cmds2.c index ddfe103b65..92cd73358e 100644 --- a/src/ex_cmds2.c +++ b/src/ex_cmds2.c @@ -3400,7 +3400,7 @@ getsourceline(c, cookie, indent) { struct source_cookie *sp = (struct source_cookie *)cookie; char_u *line; - char_u *p, *s; + char_u *p; #ifdef FEAT_EVAL /* If breakpoints have been added/deleted need to check for it. */ @@ -3471,6 +3471,8 @@ getsourceline(c, cookie, indent) #ifdef FEAT_MBYTE if (line != NULL && sp->conv.vc_type != CONV_NONE) { + char_u *s; + /* Convert the encoding of the script line. */ s = string_convert(&sp->conv, line, NULL); if (s != NULL) diff --git a/src/version.c b/src/version.c index 0977fb3637..a181505eee 100644 --- a/src/version.c +++ b/src/version.c @@ -714,6 +714,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 435, /**/ 434, /**/ -- cgit v1.2.3