aboutsummaryrefslogtreecommitdiff
path: root/editor.h
diff options
context:
space:
mode:
Diffstat (limited to 'editor.h')
-rw-r--r--editor.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/editor.h b/editor.h
index 2ee106a..abb0b57 100644
--- a/editor.h
+++ b/editor.h
@@ -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;
};