summaryrefslogtreecommitdiff
path: root/src/dged/display.h
diff options
context:
space:
mode:
authorAlbert Cervin <albert@acervin.com>2024-05-12 22:55:43 +0200
committerAlbert Cervin <albert@acervin.com>2024-05-12 22:55:43 +0200
commit9a4e99b436efefa00277d592ff67798eb491e87a (patch)
tree3603646adf972cd252772b7b2832ca72fcdcaa4b /src/dged/display.h
parent1e7e71d151bac48f150b4edb4bfa3f1ac4e80f44 (diff)
downloaddged-9a4e99b436efefa00277d592ff67798eb491e87a.tar.gz
dged-9a4e99b436efefa00277d592ff67798eb491e87a.tar.xz
dged-9a4e99b436efefa00277d592ff67798eb491e87a.zip
Improve API docs and configure system
There is now a super minimalistic configure script that automatically detects the event system (epoll/kqueue) and generates a config.h and a config.mk.
Diffstat (limited to 'src/dged/display.h')
-rw-r--r--src/dged/display.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/dged/display.h b/src/dged/display.h
index 7e3d62c..0fda30d 100644
--- a/src/dged/display.h
+++ b/src/dged/display.h
@@ -113,12 +113,15 @@ struct command_list *command_list_create(uint32_t capacity,
/**
* Enable/disable rendering of whitespace characters.
*
- * ' ' will be rendered with a dot and '\t' as an arrow.
+ * ' ' will be rendered with a dot and '\\t' as an arrow.
* @param list Command list to record command in.
* @param show True if whitespace chars should be displayed, false otherwise.
*/
void command_list_set_show_whitespace(struct command_list *list, bool show);
+/**
+ * Names for the first 16 colors.
+ */
enum colors {
Color_Black = 0,
Color_Red,