From: =?UTF-8?q?Dundar=20G=C3=B6c?= Date: Sat, 9 Oct 2021 14:39:25 +0000 (+0100) Subject: patch 8.2.3490: superfluous return statements X-Git-Tag: v8.2.3490 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3826c0513bc9370583be550c864358c7eeb5605a;p=vim patch 8.2.3490: superfluous return statements Problem: Superfluous return statements. Solution: Remove superfluous return statements from void functions. (closes #8977) --- diff --git a/src/buffer.c b/src/buffer.c index bcbdf839d..56c1bf2f4 100644 --- a/src/buffer.c +++ b/src/buffer.c @@ -3029,8 +3029,6 @@ buflist_setfpos( wip->wi_prev = NULL; if (wip->wi_next) wip->wi_next->wi_prev = wip; - - return; } #ifdef FEAT_DIFF diff --git a/src/getchar.c b/src/getchar.c index 93e3b879e..f2f38853b 100644 --- a/src/getchar.c +++ b/src/getchar.c @@ -243,7 +243,6 @@ add_buff( buf->bh_curr->b_next = p; buf->bh_curr = p; } - return; } /* diff --git a/src/memline.c b/src/memline.c index b43f10e12..6ea860d4f 100644 --- a/src/memline.c +++ b/src/memline.c @@ -1786,7 +1786,6 @@ theend: apply_autocmds(EVENT_BUFREADPOST, NULL, curbuf->b_fname, FALSE, curbuf); apply_autocmds(EVENT_BUFWINENTER, NULL, curbuf->b_fname, FALSE, curbuf); } - return; } /* @@ -3930,7 +3929,6 @@ ml_clearmarked(void) } lowest_marked = 0; - return; } /* diff --git a/src/move.c b/src/move.c index 9e3a714fd..8fe00bb67 100644 --- a/src/move.c +++ b/src/move.c @@ -2682,7 +2682,6 @@ get_scroll_overlap(lineoff_T *lp, int dir) *lp = loff1; // 1 line overlap else *lp = loff2; // 2 lines overlap - return; } /* diff --git a/src/option.c b/src/option.c index 124f76bbf..fe5ff4367 100644 --- a/src/option.c +++ b/src/option.c @@ -6391,8 +6391,6 @@ set_context_in_set_cmd( } #endif } - - return; } int diff --git a/src/version.c b/src/version.c index 43f87aabe..074c89656 100644 --- a/src/version.c +++ b/src/version.c @@ -757,6 +757,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 3490, /**/ 3489, /**/