From 8e2b19b48cef81a61d4b2439f582cb655a52e28a Mon Sep 17 00:00:00 2001 From: Nick Treleaven Date: Tue, 1 Aug 2006 10:30:56 +0000 Subject: [PATCH] Change default for removing trailing spaces to off git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@655 ea778897-0a13-0410-b9d1-a72fbfd435f5 --- ChangeLog | 1 + src/keyfile.c | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 1995697d..894e06ba 100644 --- a/ChangeLog +++ b/ChangeLog @@ -5,6 +5,7 @@ Added Auto indentation and Line wrapping options to Preferences dialog. Split up Miscellaneous items into Display and Features. Renamed Change Selection and Run toolbutton. + * src/keyfile.c: Change default for removing trailing spaces to off. 2006-07-31 Enrico Tröger diff --git a/src/keyfile.c b/src/keyfile.c index e6761c63..3691c042 100644 --- a/src/keyfile.c +++ b/src/keyfile.c @@ -331,7 +331,7 @@ gboolean configuration_load(void) app->pref_editor_replace_tabs = utils_get_setting_boolean(config, PACKAGE, "pref_editor_replace_tabs", FALSE); app->pref_editor_new_line = utils_get_setting_boolean(config, PACKAGE, "pref_editor_new_line", TRUE); - app->pref_editor_trail_space = utils_get_setting_boolean(config, PACKAGE, "pref_editor_trail_space", TRUE); + app->pref_editor_trail_space = utils_get_setting_boolean(config, PACKAGE, "pref_editor_trail_space", FALSE); tmp_string = g_find_program_in_path(GEANY_DEFAULT_TOOLS_MAKE); app->tools_make_cmd = utils_get_setting_string(config, "tools", "make_cmd", tmp_string);