* main.c: Change default value of full_eight_bits to 0 - it's

reported to be broken on many terminals.
This commit is contained in:
Pavel Roskin 2003-01-20 23:45:13 +00:00
parent f33d076970
commit 5f63841598
2 changed files with 9 additions and 4 deletions

View File

@ -1,5 +1,8 @@
2003-01-20 Pavel Roskin <proski@gnu.org> 2003-01-20 Pavel Roskin <proski@gnu.org>
* main.c: Change default value of full_eight_bits to 0 - it's
reported to be broken on many terminals.
* man2hlp.c (main): Initialize cnode->heading_level. * man2hlp.c (main): Initialize cnode->heading_level.
Bug report by Tribhuvan <loka@rcn.com> Bug report by Tribhuvan <loka@rcn.com>

View File

@ -154,12 +154,14 @@ int pause_after_run = pause_on_dumb_terminals;
int auto_save_setup = 1; int auto_save_setup = 1;
#ifndef HAVE_CHARSET #ifndef HAVE_CHARSET
/* If true, be eight bit clean */ /* If true, allow characters in the range 160-255 */
int eight_bit_clean = 1; int eight_bit_clean = 1;
/* If true, then display chars 0-255, else iso-8859-1, /*
requires eight_bit_clean */ * If true, also allow characters in the range 128-159.
int full_eight_bits = 1; * This is reported to break on many terminals (xterm, qansi-m).
*/
int full_eight_bits = 0;
#endif /* !HAVE_CHARSET */ #endif /* !HAVE_CHARSET */
/* If true use the internal viewer */ /* If true use the internal viewer */