aboutsummaryrefslogtreecommitdiff
path: root/vis-core.h
diff options
context:
space:
mode:
authorMarc André Tanner <mat@brain-dump.org>2015-11-07 09:10:09 +0100
committerMarc André Tanner <mat@brain-dump.org>2015-11-07 12:16:34 +0100
commit70a82653363ef22fd000b0af14656251deed3448 (patch)
tree59f13efe44465ee2eae69dcb5fddc8575f273994 /vis-core.h
parent26b56bc3090e9ad6ffd71f216a53805c5e894807 (diff)
downloadvis-70a82653363ef22fd000b0af14656251deed3448.tar.gz
vis-70a82653363ef22fd000b0af14656251deed3448.tar.xz
vis: prefix enum VisOperator values with VIS_
Diffstat (limited to 'vis-core.h')
-rw-r--r--vis-core.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/vis-core.h b/vis-core.h
index 4321a80..bb330ce 100644
--- a/vis-core.h
+++ b/vis-core.h
@@ -161,7 +161,7 @@ extern Mode vis_modes[VIS_MODE_LAST];
extern Movement moves[MOVE_INVALID];
-extern Operator ops[OP_INVALID];
+extern Operator ops[VIS_OP_INVALID];
const char *expandtab(Vis *vis);
@@ -173,4 +173,4 @@ void action_reset(Action*);
void mode_set(Vis *vis, Mode *new_mode);
Mode *mode_get(Vis *vis, enum VisMode mode);
-#endif \ No newline at end of file
+#endif