aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorEli Zaretskii2023-04-16 11:16:45 +0300
committerEli Zaretskii2023-04-16 11:16:45 +0300
commit329304c23fa46d5511b8336a8f0eeabedd64620f (patch)
tree9944e87fef9dda02f8618e6d70ae651248727251 /src
parent200dbf7d302e659e618f74bde81c7b3ccd795639 (diff)
downloademacs-329304c23fa46d5511b8336a8f0eeabedd64620f.tar.gz
emacs-329304c23fa46d5511b8336a8f0eeabedd64620f.zip
; * src/term.c (init_tty): Fix last change. (Bug#62877)
Diffstat (limited to 'src')
-rw-r--r--src/term.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/term.c b/src/term.c
index 8a16ce4e33f..53ba2a231e4 100644
--- a/src/term.c
+++ b/src/term.c
@@ -4164,7 +4164,7 @@ use the Bourne shell command 'TERM=...; export TERM' (C-shell:\n\
4164 tty->TS_exit_alt_charset_mode = tgetstr ("ae", address); 4164 tty->TS_exit_alt_charset_mode = tgetstr ("ae", address);
4165 tty->TS_exit_attribute_mode = tgetstr ("me", address); 4165 tty->TS_exit_attribute_mode = tgetstr ("me", address);
4166#ifdef TERMINFO 4166#ifdef TERMINFO
4167 tty->TS_enter_strike_through_mode = tigetstr ("smxx", address); 4167 tty->TS_enter_strike_through_mode = tigetstr ("smxx");
4168 if (tty->TS_enter_strike_through_mode == (char *) (intptr_t) -1) 4168 if (tty->TS_enter_strike_through_mode == (char *) (intptr_t) -1)
4169 tty->TS_enter_strike_through_mode = NULL; 4169 tty->TS_enter_strike_through_mode = NULL;
4170#else 4170#else