From 19c9c76c4d4e4cd6f8fd91f92b672937b3f3371d Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Tue, 9 Dec 2008 21:34:39 +0000 Subject: [PATCH] updated for version 7.2-069 --- src/spell.c | 2 +- src/version.c | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/spell.c b/src/spell.c index cc733b3bb..b89ef8365 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 1788511c4..073e5e49f 100644 --- a/src/version.c +++ b/src/version.c @@ -676,6 +676,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 69, /**/ 68, /**/ -- 2.50.1