updated for version 7.2c-000
diff --git a/src/if_xcmdsrv.c b/src/if_xcmdsrv.c
index 041ed5a..024bac6 100644
--- a/src/if_xcmdsrv.c
+++ b/src/if_xcmdsrv.c
@@ -1390,7 +1390,6 @@
unsigned int u;
int gotWindow;
char_u *str;
- char_u winstr[30];
struct ServerReply *r;
char_u *enc;
@@ -1436,8 +1435,12 @@
ga_append(&(r->strings), NUL);
}
#ifdef FEAT_AUTOCMD
- sprintf((char *)winstr, "0x%x", (unsigned int)win);
- apply_autocmds(EVENT_REMOTEREPLY, winstr, str, TRUE, curbuf);
+ {
+ char_u winstr[30];
+
+ sprintf((char *)winstr, "0x%x", (unsigned int)win);
+ apply_autocmds(EVENT_REMOTEREPLY, winstr, str, TRUE, curbuf);
+ }
#endif
vim_free(tofree);
}