diff options
author | Leo Tenenbaum <pommicket@gmail.com> | 2021-02-19 12:58:37 -0500 |
---|---|---|
committer | Leo Tenenbaum <pommicket@gmail.com> | 2021-02-19 12:58:37 -0500 |
commit | 2151df75cb8646381d3c4bf95379c8f568dcd9eb (patch) | |
tree | 275945e1369e5379e2e07f2b981ecef2c31c0e08 /ted.h | |
parent | 42572f5c445497296ae70100d5e51370c8bba410 (diff) |
tags starting to work
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" |