]> git.eshelyaron.com Git - emacs.git/commitdiff
; * src/term.c (init_tty): Fix last change. (Bug#62877)
authorEli Zaretskii <eliz@gnu.org>
Sun, 16 Apr 2023 08:16:45 +0000 (11:16 +0300)
committerEli Zaretskii <eliz@gnu.org>
Sun, 16 Apr 2023 08:16:45 +0000 (11:16 +0300)
src/term.c

index 8a16ce4e33f087544a49aa75fac9098927fff425..53ba2a231e43a9792f33d0977c559b29c169b587 100644 (file)
@@ -4164,7 +4164,7 @@ use the Bourne shell command 'TERM=...; export TERM' (C-shell:\n\
   tty->TS_exit_alt_charset_mode = tgetstr ("ae", address);
   tty->TS_exit_attribute_mode = tgetstr ("me", address);
 #ifdef TERMINFO
-  tty->TS_enter_strike_through_mode = tigetstr ("smxx", address);
+  tty->TS_enter_strike_through_mode = tigetstr ("smxx");
   if (tty->TS_enter_strike_through_mode == (char *) (intptr_t) -1)
     tty->TS_enter_strike_through_mode = NULL;
 #else