diff options
| author | Marc André Tanner <mat@brain-dump.org> | 2014-09-10 12:44:25 +0200 |
|---|---|---|
| committer | Marc André Tanner <mat@brain-dump.org> | 2014-09-10 12:44:25 +0200 |
| commit | 49196eba130b3ab4f0939f13d071aef3d0a70eab (patch) | |
| tree | 4d3f5d95dac9a8d01677ed66245f18796c63f695 /vis.c | |
| parent | e46158f31369b8b16ed9ea3885b9def08afc4a55 (diff) | |
| download | vis-49196eba130b3ab4f0939f13d071aef3d0a70eab.tar.gz vis-49196eba130b3ab4f0939f13d071aef3d0a70eab.tar.xz | |
Simplify drawing of the window statusbar
Diffstat (limited to 'vis.c')
| -rw-r--r-- | vis.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 { |
