1
1

made 8bit in/output the default

Этот коммит содержится в:
Pablo Saratxaga 2000-07-21 13:15:53 +00:00
родитель 9c3806b63a
Коммит a998bc8f4f
2 изменённых файлов: 8 добавлений и 2 удалений

Просмотреть файл

@ -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.

Просмотреть файл

@ -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;