Details
-
Bug
-
Status: Resolved
-
Critical
-
Resolution: Fixed
-
None
-
None
Description
Apparently, ever since Guacamole had SSH support, handling of the Alt key has been broken. Roughly four years ago, support for the Alt key was added through the following block of code:
/* If alt being held, also send escape character */ if (term->mod_alt) return guac_terminal_send_string(term, "\x1B");
This is a clear logic error. Because of that return, this block doesn't "also" send anything; it bails out of the keyboard handling prior to actually sending the key pressed.
... Sorry emacs folks.