diff options
author | =?UTF-8?q?Dundar=20G=C3=B6c?= <gocdundar@gmail.com> | 2021-10-09 15:39:25 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2021-10-09 15:39:25 +0100 |
commit | 3826c0513bc9370583be550c864358c7eeb5605a (patch) | |
tree | 8e9b5e6c9f29f51275ea2af4dca0152f5f108ccf | |
parent | 35a319b77f897744eec1155b736e9372c9c5575f (diff) | |
download | vim-git-3826c0513bc9370583be550c864358c7eeb5605a.tar.gz |
patch 8.2.3490: superfluous return statementsv8.2.3490
Problem: Superfluous return statements.
Solution: Remove superfluous return statements from void functions.
(closes #8977)
-rw-r--r-- | src/buffer.c | 2 | ||||
-rw-r--r-- | src/getchar.c | 1 | ||||
-rw-r--r-- | src/memline.c | 2 | ||||
-rw-r--r-- | src/move.c | 1 | ||||
-rw-r--r-- | src/option.c | 2 | ||||
-rw-r--r-- | src/version.c | 2 |
6 files changed, 2 insertions, 8 deletions
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 @@ -758,6 +758,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 3490, +/**/ 3489, /**/ 3488, |