Skip to content

Commit

Permalink
Write an Unicode character as-is in a comment.
Browse files Browse the repository at this point in the history
  • Loading branch information
kilobyte committed Sep 4, 2023
1 parent 43f3ac0 commit 418d49e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion user_tty.c
Original file line number Diff line number Diff line change
Expand Up @@ -589,7 +589,7 @@ static void usertty_textout_draft(const char *txt, bool strong)
{
strcpy(b_draft, txt);
#ifdef USER_DEBUG
strcat(b_draft, "\xe2\x96\xa0"); // U+25A0 BLACK SQUARE
strcat(b_draft, "\xe2\x96\xa0"); // U+25A0 BLACK SQUARE
#endif
if ((o_draftlen=strlen(b_draft)))
b_textout(b_draft);
Expand Down

0 comments on commit 418d49e

Please sign in to comment.