aboutsummaryrefslogtreecommitdiff
path: root/view.c
diff options
context:
space:
mode:
authorMarc André Tanner <mat@brain-dump.org>2017-06-12 18:26:27 +0200
committerMarc André Tanner <mat@brain-dump.org>2017-06-15 15:51:43 +0200
commit9e0c192423a165e735441279e0ee6af7cb0353ef (patch)
treeeb630e7a8079cce888cc1db260af34d35ba19b28 /view.c
parent88ae50f75f8606269269bbf3d8239893befdb0af (diff)
downloadvis-9e0c192423a165e735441279e0ee6af7cb0353ef.tar.gz
vis-9e0c192423a165e735441279e0ee6af7cb0353ef.tar.xz
view: rename view_cursors_next
Diffstat (limited to 'view.c')
-rw-r--r--view.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/view.c b/view.c
index 3b20123..7762fa1 100644
--- a/view.c
+++ b/view.c
@@ -1073,7 +1073,7 @@ Cursor *view_selections_prev(Cursor *c) {
return NULL;
}
-Cursor *view_cursors_next(Cursor *c) {
+Cursor *view_selections_next(Cursor *c) {
View *view = c->view;
for (c = c->next; c; c = c->next) {
if (c->generation != view->cursor_generation)