From: Bram Moolenaar Date: Mon, 25 Mar 2019 23:31:21 +0000 (+0100) Subject: patch 8.1.1053: warning for missing return statement X-Git-Tag: v8.1.1053 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d6c3f1fa2b5e1dd7dc87cf608d72b84ad696b58f;p=vim patch 8.1.1053: warning for missing return statement Problem: Warning for missing return statement. (Dominique Pelle) Solution: Add return statement. --- diff --git a/src/undo.c b/src/undo.c index 4fd58a332..978549aea 100644 --- a/src/undo.c +++ b/src/undo.c @@ -3541,6 +3541,7 @@ anyBufIsChanged(void) FOR_ALL_BUFFERS(buf) if (bufIsChanged(buf)) return TRUE; + return FALSE; } /* diff --git a/src/version.c b/src/version.c index 1f0fb6b25..dd746ca22 100644 --- a/src/version.c +++ b/src/version.c @@ -775,6 +775,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 1053, /**/ 1052, /**/