From: Bram Moolenaar Date: Sat, 28 Oct 2017 13:38:40 +0000 (+0200) Subject: patch 8.0.1229: condition in vim_str2nr() is always true X-Git-Tag: v8.0.1229 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9a91c7a1f9134f799b8672a4e3844781263e8cf3;p=vim patch 8.0.1229: condition in vim_str2nr() is always true Problem: Condition in vim_str2nr() is always true. (Nikolai Pavlov) Solution: Remove the condition. (Closes #2259) --- diff --git a/src/charset.c b/src/charset.c index 4516816fe..a8b704c69 100644 --- a/src/charset.c +++ b/src/charset.c @@ -1907,8 +1907,7 @@ vim_str2nr( pre = 0; /* can't be octal */ break; } - if (ptr[n] >= '0') - pre = '0'; /* assume octal */ + pre = '0'; /* assume octal */ if (n == maxlen) break; } diff --git a/src/version.c b/src/version.c index b49c7643c..1da082d1f 100644 --- a/src/version.c +++ b/src/version.c @@ -761,6 +761,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 1229, /**/ 1228, /**/