summaryrefslogtreecommitdiff
path: root/src/dged/text.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/dged/text.h')
-rw-r--r--src/dged/text.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/dged/text.h b/src/dged/text.h
index 922014e..8b49ef4 100644
--- a/src/dged/text.h
+++ b/src/dged/text.h
@@ -59,6 +59,7 @@ bool text_line_contains_unicode(struct text *text, uint32_t line);
enum text_property_type {
TextProperty_Colors,
+ TextProperty_Data,
};
struct text_property_colors {
@@ -72,6 +73,7 @@ struct text_property {
enum text_property_type type;
union {
struct text_property_colors colors;
+ void *userdata;
};
};