diff options
| author | Marc André Tanner <mat@brain-dump.org> | 2015-01-01 14:39:27 +0100 |
|---|---|---|
| committer | Marc André Tanner <mat@brain-dump.org> | 2015-01-01 14:39:27 +0100 |
| commit | b2dd2bb97a752f66d65c4e493e9ff7e778f883c4 (patch) | |
| tree | 76b7e214bb8071d598c31a1ba51a57b548fd6b02 /editor.c | |
| parent | 7154b8d77ea78396c44321a5e05614b0de02af22 (diff) | |
| download | vis-b2dd2bb97a752f66d65c4e493e9ff7e778f883c4.tar.gz vis-b2dd2bb97a752f66d65c4e493e9ff7e778f883c4.tar.xz | |
Rename mark related functions
Diffstat (limited to 'editor.c')
| -rw-r--r-- | editor.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -56,8 +56,8 @@ static void editor_window_cursor_moved(Win *winwin, void *data) { EditorWin *win = data; Filerange sel = window_selection_get(winwin); if (text_range_valid(&sel) && sel.start != sel.end) { - text_mark_set(win->text, MARK_SELECTION_START, sel.start); - text_mark_set(win->text, MARK_SELECTION_END, sel.end); + text_mark_intern_set(win->text, MARK_SELECTION_START, sel.start); + text_mark_intern_set(win->text, MARK_SELECTION_END, sel.end); } editor_window_statusbar_draw(win); } |
