[geany/geany] b1b9e6: Fix configuration directory location on non-Windows

Colomban Wendling git-noreply at xxxxx
Mon Oct 6 14:24:26 UTC 2014


Branch:      refs/heads/master
Author:      Colomban Wendling <ban at herbesfolles.org>
Committer:   Colomban Wendling <ban at herbesfolles.org>
Date:        Mon, 06 Oct 2014 14:24:26 UTC
Commit:      b1b9e6d19a3983de02aebebd49496407ca722a91
             https://github.com/geany/geany/commit/b1b9e6d19a3983de02aebebd49496407ca722a91

Log Message:
-----------
Fix configuration directory location on non-Windows

3e089e4c2c914a4b8885daa65e784a227bd2d6b0 accidentally switched from
`g_get_user_config_dir()` to `g_get_user_data_dir()` as the location
for the user's configuration directory.


Modified Paths:
--------------
    src/utils.c

Modified: src/utils.c
2 lines changed, 1 insertions(+), 1 deletions(-)
===================================================================
@@ -2085,6 +2085,6 @@ gchar *utils_get_user_config_dir(void)
 #ifdef G_OS_WIN32
 	return win32_get_user_config_dir();
 #else
-	return g_build_filename(g_get_user_data_dir(), "geany", NULL);
+	return g_build_filename(g_get_user_config_dir(), "geany", NULL);
 #endif
 }



--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).


More information about the Commits mailing list