mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-22 20:36:50 +03:00
* 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:
parent
f33d076970
commit
5f63841598
@ -1,5 +1,8 @@
|
||||
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.
|
||||
Bug report by Tribhuvan <loka@rcn.com>
|
||||
|
||||
|
10
src/main.c
10
src/main.c
@ -154,12 +154,14 @@ int pause_after_run = pause_on_dumb_terminals;
|
||||
int auto_save_setup = 1;
|
||||
|
||||
#ifndef HAVE_CHARSET
|
||||
/* If true, be eight bit clean */
|
||||
/* If true, allow characters in the range 160-255 */
|
||||
int eight_bit_clean = 1;
|
||||
|
||||
/* If true, then display chars 0-255, else iso-8859-1,
|
||||
requires eight_bit_clean */
|
||||
int full_eight_bits = 1;
|
||||
/*
|
||||
* If true, also allow characters in the range 128-159.
|
||||
* This is reported to break on many terminals (xterm, qansi-m).
|
||||
*/
|
||||
int full_eight_bits = 0;
|
||||
#endif /* !HAVE_CHARSET */
|
||||
|
||||
/* If true use the internal viewer */
|
||||
|
Loading…
Reference in New Issue
Block a user