From 948efb8e624c4488db00ba20ab58652212a091d7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20Andr=C3=A9=20Tanner?= Date: Mon, 12 Jun 2017 18:10:05 +0200 Subject: view: rename view_cursors_clear --- view.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'view.c') 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) -- cgit v1.2.3