aboutsummaryrefslogtreecommitdiff
path: root/vis-core.h
diff options
context:
space:
mode:
authorMarc André Tanner <mat@brain-dump.org>2016-01-27 17:38:15 +0100
committerMarc André Tanner <mat@brain-dump.org>2016-01-27 17:38:15 +0100
commitedb2213b0efbd2fcfa2656a3e29cb2ce20b90d93 (patch)
tree89845b1a38e0c0ef6a100dd63ed92f0f20f1ef92 /vis-core.h
parentb9e8d20523a7bf05e02468efd97bbcf90f18a1e0 (diff)
downloadvis-edb2213b0efbd2fcfa2656a3e29cb2ce20b90d93.tar.gz
vis-edb2213b0efbd2fcfa2656a3e29cb2ce20b90d93.tar.xz
vis: remove unused struct Mode member 'is_user'
Diffstat (limited to 'vis-core.h')
-rw-r--r--vis-core.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/vis-core.h b/vis-core.h
index b65039e..9010ea4 100644
--- a/vis-core.h
+++ b/vis-core.h
@@ -25,7 +25,6 @@ struct Mode {
const char *name; /* descriptive, user facing name of the mode */
const char *status; /* name displayed in the window status bar */
const char *help; /* short description used by :help */
- bool isuser; /* whether this is a user or internal mode */
void (*enter)(Vis*, Mode *old); /* called right before the mode becomes active */
void (*leave)(Vis*, Mode *new); /* called right before the mode becomes inactive */
void (*input)(Vis*, const char*, size_t); /* called whenever a key is not found in this mode and all its parent modes */