summaryrefslogtreecommitdiff
path: root/ted.h
diff options
context:
space:
mode:
authorLeo Tenenbaum <pommicket@gmail.com>2021-02-19 12:58:37 -0500
committerLeo Tenenbaum <pommicket@gmail.com>2021-02-19 12:58:37 -0500
commit2151df75cb8646381d3c4bf95379c8f568dcd9eb (patch)
tree275945e1369e5379e2e07f2b981ecef2c31c0e08 /ted.h
parent42572f5c445497296ae70100d5e51370c8bba410 (diff)
tags starting to work
Diffstat (limited to 'ted.h')
-rw-r--r--ted.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/ted.h b/ted.h
index 4676fb7..b713d3f 100644
--- a/ted.h
+++ b/ted.h
@@ -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"