diff options
| author | Marc André Tanner <mat@brain-dump.org> | 2017-06-12 18:28:19 +0200 |
|---|---|---|
| committer | Marc André Tanner <mat@brain-dump.org> | 2017-06-15 15:51:43 +0200 |
| commit | 08d7d23f7d27e253947ecd2bfa6334f0fdbe3ea5 (patch) | |
| tree | 9abbd5b7c4dd785354296939b50e433d5f69cea3 /view.h | |
| parent | 742fb8b4c39d3278227a25ab7723c0f72bbca552 (diff) | |
| download | vis-08d7d23f7d27e253947ecd2bfa6334f0fdbe3ea5.tar.gz vis-08d7d23f7d27e253947ecd2bfa6334f0fdbe3ea5.tar.xz | |
view: rename view_cursors_column{,count,next}
Diffstat (limited to 'view.h')
| -rw-r--r-- | view.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |
