aboutsummaryrefslogtreecommitdiff
path: root/vis.c
diff options
context:
space:
mode:
authorMarc André Tanner <mat@brain-dump.org>2014-09-10 12:44:25 +0200
committerMarc André Tanner <mat@brain-dump.org>2014-09-10 12:44:25 +0200
commit49196eba130b3ab4f0939f13d071aef3d0a70eab (patch)
tree4d3f5d95dac9a8d01677ed66245f18796c63f695 /vis.c
parente46158f31369b8b16ed9ea3885b9def08afc4a55 (diff)
downloadvis-49196eba130b3ab4f0939f13d071aef3d0a70eab.tar.gz
vis-49196eba130b3ab4f0939f13d071aef3d0a70eab.tar.xz
Simplify drawing of the window statusbar
Diffstat (limited to 'vis.c')
-rw-r--r--vis.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/vis.c b/vis.c
index 3aefc9a..a6b5d12 100644
--- a/vis.c
+++ b/vis.c
@@ -60,7 +60,7 @@ struct Mode {
typedef struct {
char *name; /* is used to match against argv[0] to enable this config */
Mode *mode; /* default mode in which the editor should start in */
- editor_statusbar_t statusbar; /* routine which is called whenever the cursor is moved within a window */
+ void (*statusbar)(EditorWin*); /* routine which is called whenever the cursor is moved within a window */
} Config;
typedef struct {