summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvimboss <devnull@localhost>2008-12-09 21:34:39 +0000
committervimboss <devnull@localhost>2008-12-09 21:34:39 +0000
commitde7e207cda5fe166216396f27eae9264b16fcfbe (patch)
tree132dc34211eae98d290d9e62b178543d3c421747
parent19625c5935bc455ef68ab2ed30a27a8525342829 (diff)
downloadvim-de7e207cda5fe166216396f27eae9264b16fcfbe.tar.gz
updated for version 7.2-069v7.2.069v7-2-069
-rw-r--r--src/spell.c2
-rw-r--r--src/version.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/src/spell.c b/src/spell.c
index cc733b3b..b89ef836 100644
--- a/src/spell.c
+++ b/src/spell.c
@@ -1765,7 +1765,7 @@ match_checkcompoundpattern(ptr, wlen, gap)
/* Second part matches at start of following compound word, now
* check if first part matches at end of previous word. */
p = ((char_u **)gap->ga_data)[i];
- len = STRLEN(p);
+ len = (int)STRLEN(p);
if (len <= wlen && STRNCMP(ptr + wlen - len, p, len) == 0)
return TRUE;
}
diff --git a/src/version.c b/src/version.c
index 1788511c..073e5e49 100644
--- a/src/version.c
+++ b/src/version.c
@@ -677,6 +677,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 69,
+/**/
68,
/**/
67,