diff options
| -rw-r--r-- | vis-core.h | 1 | ||||
| -rw-r--r-- | vis.c | 1 |
2 files changed, 0 insertions, 2 deletions
@@ -149,7 +149,6 @@ struct Win { Mode modes[VIS_MODE_INVALID]; /* overlay mods used for per window key bindings */ Win *parent; /* window which was active when showing the command prompt */ Mode *parent_mode; /* mode which was active when showing the command prompt */ - char *lexer_name; /* corresponds to filename in lexers/ subdirectory */ Win *prev, *next; /* neighbouring windows */ }; @@ -285,7 +285,6 @@ static void window_free(Win *win) { for (size_t i = 0; i < LENGTH(win->modes); i++) map_free(win->modes[i].bindings); ringbuf_free(win->jumplist); - free(win->lexer_name); free(win); } |
