From 08d7d23f7d27e253947ecd2bfa6334f0fdbe3ea5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20Andr=C3=A9=20Tanner?= Date: Mon, 12 Jun 2017 18:28:19 +0200 Subject: view: rename view_cursors_column{,count,next} --- view.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'view.h') diff --git a/view.h b/view.h index 8f6e1ca..d870505 100644 --- a/view.h +++ b/view.h @@ -168,7 +168,7 @@ int view_selections_count(View*); */ int view_selections_number(Cursor*); /** Get maximal number of selections on a single line. */ -int view_cursors_column_count(View*); +int view_selections_column_count(View*); /** * Starting from the start of the text, get the `column`-th selection on a line. * @param column The zero based column index. @@ -178,7 +178,7 @@ Cursor *view_cursors_column(View*, int column); * Get the next `column`-th selection on a line. * @param column The zero based column index. */ -Cursor *view_cursors_column_next(Cursor*, int column); +Cursor *view_selections_column_next(Cursor*, int column); /** * @} * @defgroup view_cover -- cgit v1.2.3