necouchman commented on code in PR #523:
URL: https://github.com/apache/guacamole-server/pull/523#discussion_r1632130452
##########
src/terminal/select.c:
##########
@@ -308,6 +317,10 @@ static void
guac_terminal_clipboard_append_row(guac_terminal* terminal,
int codepoint = buffer_row->characters[i].value;
+ /* Fill empty with spaces if not at end of line */
+ if (codepoint == 0 && i < eol)
+ codepoint = 32;
Review Comment:
Should probably `#define` this as a constant.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]