updated for version 7.1-034
diff --git a/src/eval.c b/src/eval.c
index e22a61d..6ce7bef 100644
--- a/src/eval.c
+++ b/src/eval.c
@@ -992,20 +992,20 @@
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();
diff --git a/src/spell.c b/src/spell.c
index 4e5e7c6..a4c6811 100644
--- a/src/spell.c
+++ b/src/spell.c
@@ -7829,7 +7829,7 @@
# 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 @@
#ifdef _MSC_VER
# if (_MSC_VER <= 1200)
-/* # pragma optimize("", on) */
+ # pragma optimize("", on)
# endif
#endif
diff --git a/src/version.c b/src/version.c
index 98ecaf8..e7d9dac 100644
--- a/src/version.c
+++ b/src/version.c
@@ -667,6 +667,8 @@
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 34,
+/**/
33,
/**/
32,