# HG changeset patch # User Richard M. Stallman # Date 761092359 0 # Node ID 560cee2048ed0cf95baa22c00137161dd0a7f7cb # Parent 86efd91bb72c9db800cf5b7f87c3b6ac06b7dd69 (term_init): If no `se', use `me'; if no `me' either, don't use standout mode at all. diff -r 86efd91bb72c -r 560cee2048ed src/term.c --- a/src/term.c Sat Feb 12 20:14:29 1994 +0000 +++ b/src/term.c Sat Feb 12 22:32:39 1994 +0000 @@ -1506,6 +1506,17 @@ TS_standout_mode = tgetstr ("us", address); } + /* If no `se' string, try using a `me' string instead. + If that fails, we can't use standout mode at all. */ + if (TS_end_standout_mode == 0) + { + char *s = tgetstr ("me"); + if (s != 0) + TS_end_standout_mode = s; + else + TS_standout_mode = 0; + } + if (TF_teleray) { Wcm.cm_tab = 0;