diff options
| author | Marc André Tanner <mat@brain-dump.org> | 2015-10-25 21:36:23 +0100 |
|---|---|---|
| committer | Marc André Tanner <mat@brain-dump.org> | 2015-10-25 22:46:43 +0100 |
| commit | afe666ee88c7706954d6d6bea70ac18ecfd20312 (patch) | |
| tree | c9dcf33af16260afefbea3183f01a23fffe8ca27 /editor.h | |
| parent | 81bae7262b21b7f19bfaf0de4499a56372ef2a20 (diff) | |
| download | vis-afe666ee88c7706954d6d6bea70ac18ecfd20312.tar.gz vis-afe666ee88c7706954d6d6bea70ac18ecfd20312.tar.xz | |
vis: clean up mark handling
Diffstat (limited to 'editor.h')
| -rw-r--r-- | editor.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -198,7 +198,7 @@ enum Mark { MARK_z, MARK_SELECTION_START, MARK_SELECTION_END, - MARK_LAST, + MARK_INVALID, }; struct File { @@ -208,7 +208,7 @@ struct File { bool is_stdin; struct stat stat; int refcount; - Mark marks[MARK_LAST]; + Mark marks[MARK_INVALID]; File *next, *prev; }; |
