made 8bit in/output the default

This commit is contained in:
Pablo Saratxaga 2000-07-21 13:15:53 +00:00
parent 9c3806b63a
commit a998bc8f4f
2 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,9 @@
2000-07-21 Pablo Saratxaga <pablo@mandrakesoft.com>
* src/main.c: make 8bit input/output the default (99% of the people
expects that; lets the remaining 1% use the configuration menu
to disactivate it if they want)
2000-07-20 Andrew V. Samoilov <sav@bcs.zp.ua>
* gtkedit/ChangeLog: There was no ChangeLog there, so I added one.

View File

@ -211,11 +211,11 @@ int pause_after_run = pause_on_dumb_terminals;
int auto_save_setup = 1;
/* If true, be eight bit clean */
int eight_bit_clean = 0;
int eight_bit_clean = 1;
/* If true, then display chars 0-255, else iso-8859-1,
requires eight_bit_clean */
int full_eight_bits = 0;
int full_eight_bits = 1;
/* If true use the internal viewer */
int use_internal_view = 1;