diff options
| -rw-r--r-- | window.c | 1 | ||||
| -rw-r--r-- | window.h | 2 |
2 files changed, 1 insertions, 2 deletions
@@ -56,7 +56,6 @@ typedef struct { /* cursor position */ Line *line; /* screen line on which cursor currently resides */ } Cursor; -typedef struct Win Win; struct Win { /* window showing part of a file */ Text *text; /* underlying text management */ WINDOW *win; /* curses window for the text area */ @@ -4,8 +4,8 @@ #include <stddef.h> #include <stdbool.h> #include "text.h" +#include "syntax.h" -typedef struct Syntax Syntax; typedef struct Win Win; Win *window_new(Text*); |
