From ed842baac4f438a90bd6214020d2363241171545 Mon Sep 17 00:00:00 2001 From: monsta Date: Tue, 18 Apr 2017 11:19:51 +0300 Subject: don't check nonexistent MATE22_USER_DIR env var another case of excessive gnome -> mate renaming back in 2011 --- libcaja-private/caja-file-utilities.c | 15 ++------------- 1 file changed, 2 insertions(+), 13 deletions(-) (limited to 'libcaja-private/caja-file-utilities.c') diff --git a/libcaja-private/caja-file-utilities.c b/libcaja-private/caja-file-utilities.c index aba9cf83..237f85d7 100644 --- a/libcaja-private/caja-file-utilities.c +++ b/libcaja-private/caja-file-utilities.c @@ -172,22 +172,11 @@ char* caja_get_user_directory(void) * Get the path for the filename containing caja accelerator map. * The filename need not exist. * - * Return value: the filename path, or NULL if the home directory could not be found + * Return value: the filename path **/ char* caja_get_accel_map_file(void) { - const gchar* override; - - override = g_getenv ("MATE22_USER_DIR"); - - if (override) - { - return g_build_filename(override, "accels", "caja", NULL); - } - else - { - return g_build_filename(g_get_user_config_dir(), "caja", "accels", NULL); - } + return g_build_filename (g_get_user_config_dir (), "caja", "accels", NULL); } typedef struct { -- cgit v1.2.1