1
1
mirror of https://github.com/profanity-im/profanity.git synced 2025-01-03 14:57:42 -05:00

Add define names to comment

This commit is contained in:
Michael Vetter 2020-02-19 16:36:54 +01:00
parent b4c6470df4
commit cf36a92dcb
2 changed files with 6 additions and 7 deletions

View File

@ -56,7 +56,6 @@
#define NO_COLOUR_DATE 16
#define UNTRUSTED 32
// core UI
void ui_init(void);
void ui_load_colours(void);

View File

@ -1436,12 +1436,12 @@ static void
_win_print_internal(ProfWin *window, const char show_char, int pad_indent, GDateTime *time,
int flags, theme_item_t theme_item, const char *const from, const char *const message, DeliveryReceipt *receipt)
{
// flags : 1st bit = 0/1 - me/not me
// 2nd bit = 0/1 - date/no date
// 3rd bit = 0/1 - eol/no eol
// 4th bit = 0/1 - color from/no color from
// 5th bit = 0/1 - color date/no date
// 6th bit = 0/1 - trusted/untrusted
// flags : 1st bit = 0/1 - me/not me. define: NO_ME
// 2nd bit = 0/1 - date/no date. define: NO_DATE
// 3rd bit = 0/1 - eol/no eol. define: NO_EOL
// 4th bit = 0/1 - color from/no color from. define: NO_COLOUR_FROM
// 5th bit = 0/1 - color date/no date. define: NO_COLOUR_DATE
// 6th bit = 0/1 - trusted/untrusted. define: UNTRUSTED
gboolean me_message = FALSE;
int offset = 0;
int colour = theme_attrs(THEME_ME);