diff options
Diffstat (limited to 'ted.h')
-rw-r--r-- | ted.h | 14 |
1 files changed, 0 insertions, 14 deletions
@@ -160,18 +160,6 @@ typedef struct { BufferEdit *redo_history; // dynamic array of redo history } TextBuffer; -typedef struct { - char const *name; - char const *file; - char const *address; -} Tag; - -typedef struct { - Tag *tags; // dynamic array of tags - char *file_data; - struct timespec last_modified; // time when tags file was last modified -} TagsFile; - ENUM_U16 { MENU_NONE, MENU_OPEN, @@ -267,8 +255,6 @@ typedef struct Ted { bool build_shown; // are we showing the build output? bool building; // is the build process running? - TagsFile tags; - BuildError *build_errors; // dynamic array of build errors u32 build_error; // build error we are currently "on" |