This commit was generated by cvs2svn to compensate for changes in r104977,

which included commits to RCS files with non-trunk default branches.
This commit is contained in:
Andrey A. Chernov 2002-10-12 10:22:52 +00:00
commit de77341b0d
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=104978
2 changed files with 10 additions and 0 deletions

View File

@ -220,6 +220,8 @@ struct tries {
#define S_QUOTE '\''
#define D_QUOTE '"'
#define VT_ACSC "``aaffggiijjkkllmmnnooppqqrrssttuuvvwwxxyyzz{{||}}~~"
/*
* Structure for palette tables
*/

View File

@ -465,6 +465,14 @@ sanity_check(TERMTYPE * tp)
PAIRED(enter_underline_mode, exit_underline_mode)
}
/* we do this check/fix in postprocess_termcap(), but some packagers
* prefer to bypass it...
*/
if (acs_chars == 0
&& enter_alt_charset_mode != 0
&& exit_alt_charset_mode != 0)
acs_chars = strdup(VT_ACSC);
/* listed in structure-member order of first argument */
PAIRED(enter_alt_charset_mode, exit_alt_charset_mode);
ANDMISSING(enter_alt_charset_mode, acs_chars);