From a998bc8f4f45d3b00614328606174f1852159fd1 Mon Sep 17 00:00:00 2001 From: Pablo Saratxaga Date: Fri, 21 Jul 2000 13:15:53 +0000 Subject: [PATCH] made 8bit in/output the default --- ChangeLog | 6 ++++++ src/main.c | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 5772458f6..60ced13c3 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2000-07-21 Pablo Saratxaga + + * 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 * gtkedit/ChangeLog: There was no ChangeLog there, so I added one. diff --git a/src/main.c b/src/main.c index d58e1b315..0cd6a0acc 100644 --- a/src/main.c +++ b/src/main.c @@ -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;