aboutsummaryrefslogtreecommitdiff
path: root/view.c
diff options
context:
space:
mode:
authorMarc André Tanner <mat@brain-dump.org>2017-06-12 18:10:05 +0200
committerMarc André Tanner <mat@brain-dump.org>2017-06-15 15:51:42 +0200
commit948efb8e624c4488db00ba20ab58652212a091d7 (patch)
tree5e7ff7a47afdb4aed89d4765cd60dcb5d5291afd /view.c
parente00d1426ead5742a91bf3bccae920509ff21acb0 (diff)
downloadvis-948efb8e624c4488db00ba20ab58652212a091d7.tar.gz
vis-948efb8e624c4488db00ba20ab58652212a091d7.tar.xz
view: rename view_cursors_clear
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 49bb233..aeebe26 100644
--- a/view.c
+++ b/view.c
@@ -1188,7 +1188,7 @@ void view_selections_clear(View *view) {
view_draw(view);
}
-void view_cursors_clear(View *view) {
+void view_selections_dispose_all(View *view) {
for (Cursor *c = view->cursors, *next; c; c = next) {
next = c->next;
if (c != view->cursor)