aboutsummaryrefslogtreecommitdiff
path: root/view.c
diff options
context:
space:
mode:
authorMarc André Tanner <mat@brain-dump.org>2017-06-12 18:26:09 +0200
committerMarc André Tanner <mat@brain-dump.org>2017-06-15 15:51:43 +0200
commit88ae50f75f8606269269bbf3d8239893befdb0af (patch)
tree6d0816f7be4bd692ff396e925992ee15769cf3c9 /view.c
parent5b1b6403955b97cce1fd22a8f5a6f9df72399c4b (diff)
downloadvis-88ae50f75f8606269269bbf3d8239893befdb0af.tar.gz
vis-88ae50f75f8606269269bbf3d8239893befdb0af.tar.xz
view: rename view_cursors_prev
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 0f5a599..3b20123 100644
--- a/view.c
+++ b/view.c
@@ -1063,7 +1063,7 @@ void view_selections_primary_set(Cursor *c) {
c->view->cursor = c;
}
-Cursor *view_cursors_prev(Cursor *c) {
+Cursor *view_selections_prev(Cursor *c) {
View *view = c->view;
for (c = c->prev; c; c = c->prev) {
if (c->generation != view->cursor_generation)