summaryrefslogtreecommitdiff
path: root/ted.h
diff options
context:
space:
mode:
Diffstat (limited to 'ted.h')
-rw-r--r--ted.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/ted.h b/ted.h
index 30abb4b..d589365 100644
--- a/ted.h
+++ b/ted.h
@@ -1,4 +1,5 @@
#define TED_PATH_MAX 256
+#define TED_UNTITLED "Untitled" // what to call untitled buffers
#define TEXT_SIZE_MIN 6
#define TEXT_SIZE_MAX 70
@@ -70,7 +71,7 @@ typedef struct {
u32 nlines;
u32 lines_capacity;
Line *lines;
- char error[128];
+ char error[256];
BufferEdit *undo_history; // dynamic array of undo history
BufferEdit *redo_history; // dynamic array of redo history
} TextBuffer;