From d723632f9f32bc9493bc21d4a698df43aea4ac48 Mon Sep 17 00:00:00 2001 From: Jeffrey Stedfast Date: Fri, 22 Jun 2001 20:11:30 +0000 Subject: Duh, we saved the charset as "default_charset", not "charset" - no wonder 2001-06-22 Jeffrey Stedfast * mail-config.c (config_read): Duh, we saved the charset as "default_charset", not "charset" - no wonder the correct charset menu item was never being set. svn path=/trunk/; revision=10399 --- mail/ChangeLog | 6 ++++++ mail/mail-config.c | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/mail/ChangeLog b/mail/ChangeLog index 497b1f8fc5..cf06d7f961 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,9 @@ +2001-06-22 Jeffrey Stedfast + + * mail-config.c (config_read): Duh, we saved the charset as + "default_charset", not "charset" - no wonder the correct charset + menu item was never being set. + 2001-06-21 Jeffrey Stedfast * mail-ops.c (mail_send_message): Temporarily remove the Bcc diff --git a/mail/mail-config.c b/mail/mail-config.c index 1a346ebff0..4f6ad68ed0 100644 --- a/mail/mail-config.c +++ b/mail/mail-config.c @@ -523,7 +523,7 @@ config_read (void) g_free (str); /* Default charset */ - str = g_strdup_printf ("=%s/config/Mail=/Format/charset", evolution_dir); + str = g_strdup_printf ("=%s/config/Mail=/Format/default_charset", evolution_dir); config->default_charset = gnome_config_get_string (str); g_free (str); if (!config->default_charset) { -- cgit