summaryrefslogtreecommitdiffstats
path: root/src/memline.c
diff options
context:
space:
mode:
author=?UTF-8?q?Dundar=20G=C3=B6c?= <gocdundar@gmail.com>2021-10-09 15:39:25 +0100
committerBram Moolenaar <Bram@vim.org>2021-10-09 15:39:25 +0100
commit3826c0513bc9370583be550c864358c7eeb5605a (patch)
tree8e9b5e6c9f29f51275ea2af4dca0152f5f108ccf /src/memline.c
parent35a319b77f897744eec1155b736e9372c9c5575f (diff)
patch 8.2.3490: superfluous return statementsv8.2.3490
Problem: Superfluous return statements. Solution: Remove superfluous return statements from void functions. (closes #8977)
Diffstat (limited to 'src/memline.c')
-rw-r--r--src/memline.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/memline.c b/src/memline.c
index b43f10e12e..6ea860d4fe 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;
}
/*