mirror of
https://github.com/tmux/tmux.git
synced 2025-09-02 13:33:27 +00:00
Copy ACS characters as UTF-8, from Balazs Kezes.
This commit is contained in:
@ -81,7 +81,7 @@ tty_acs_get(struct tty *tty, u_char ch)
|
||||
struct tty_acs_entry *entry;
|
||||
|
||||
/* If not a UTF-8 terminal, use the ACS set. */
|
||||
if (!(tty->flags & TTY_UTF8)) {
|
||||
if (tty != NULL && !(tty->flags & TTY_UTF8)) {
|
||||
if (tty->term->acs[ch][0] == '\0')
|
||||
return (NULL);
|
||||
return (&tty->term->acs[ch][0]);
|
||||
|
Reference in New Issue
Block a user