aboutsummaryrefslogtreecommitdiff
path: root/view.h
diff options
context:
space:
mode:
authorMarc André Tanner <mat@brain-dump.org>2017-06-12 18:07:11 +0200
committerMarc André Tanner <mat@brain-dump.org>2017-06-15 15:51:42 +0200
commite7717eb977142b6cb3b05e04c8623d39b7bac102 (patch)
tree4bdc26ec286858c668665b5f11970247c27dd01b /view.h
parent318837f379d848a0ee431d25c15033a251433a33 (diff)
downloadvis-e7717eb977142b6cb3b05e04c8623d39b7bac102.tar.gz
vis-e7717eb977142b6cb3b05e04c8623d39b7bac102.tar.xz
view: rename view_cursors_new
Diffstat (limited to 'view.h')
-rw-r--r--view.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/view.h b/view.h
index fa40a58..e5e40dc 100644
--- a/view.h
+++ b/view.h
@@ -104,7 +104,7 @@ bool view_update(View*);
* .. warning:: Fails if position is already covered by a selection.
* @endrst
*/
-Cursor *view_cursors_new(View*, size_t pos);
+Cursor *view_selections_new(View*, size_t pos);
/**
* Create a new selection even if position is already covered by an
* existing selection.
@@ -113,7 +113,7 @@ Cursor *view_cursors_new(View*, size_t pos);
* disposed.
* @endrst
*/
-Cursor *view_cursors_new_force(View*, size_t pos);
+Cursor *view_selections_new_force(View*, size_t pos);
/**
* Dispose an existing selection.
* @rst