SF.net SVN: geany: [655] trunk

ntrel at users.sourceforge.net ntrel at xxxxx
Tue Aug 1 10:31:02 UTC 2006


Revision: 655
Author:   ntrel
Date:     2006-08-01 03:30:56 -0700 (Tue, 01 Aug 2006)
ViewCVS:  http://svn.sourceforge.net/geany/?rev=655&view=rev

Log Message:
-----------
Change default for removing trailing spaces to off

Modified Paths:
--------------
    trunk/ChangeLog
    trunk/src/keyfile.c
Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog	2006-08-01 10:06:28 UTC (rev 654)
+++ trunk/ChangeLog	2006-08-01 10:30:56 UTC (rev 655)
@@ -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  <enrico.troeger at uvena.de>

Modified: trunk/src/keyfile.c
===================================================================
--- trunk/src/keyfile.c	2006-08-01 10:06:28 UTC (rev 654)
+++ trunk/src/keyfile.c	2006-08-01 10:30:56 UTC (rev 655)
@@ -331,7 +331,7 @@
 
 	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);


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.




More information about the Commits mailing list