aboutsummaryrefslogtreecommitdiffstats
path: root/e-util/e-plugin.c
diff options
context:
space:
mode:
authorNot Zed <NotZed@Ximian.com>2004-10-20 15:42:49 +0800
committerMichael Zucci <zucchi@src.gnome.org>2004-10-20 15:42:49 +0800
commit691f1886c3988f89d6830e7d8901c37b2e8e8284 (patch)
treee40ce6ccd27c0f4c4737fe6c1395049ff0b9464b /e-util/e-plugin.c
parent10a951b6660b9a1aa8d7e709a3a7c67435873da0 (diff)
downloadgsoc2013-evolution-691f1886c3988f89d6830e7d8901c37b2e8e8284.tar
gsoc2013-evolution-691f1886c3988f89d6830e7d8901c37b2e8e8284.tar.gz
gsoc2013-evolution-691f1886c3988f89d6830e7d8901c37b2e8e8284.tar.bz2
gsoc2013-evolution-691f1886c3988f89d6830e7d8901c37b2e8e8284.tar.lz
gsoc2013-evolution-691f1886c3988f89d6830e7d8901c37b2e8e8284.tar.xz
gsoc2013-evolution-691f1886c3988f89d6830e7d8901c37b2e8e8284.tar.zst
gsoc2013-evolution-691f1886c3988f89d6830e7d8901c37b2e8e8284.zip
check for empty trailing sections/pages after we exit the main loop.
2004-10-20 Not Zed <NotZed@Ximian.com> * e-config.c (ec_rebuild): check for empty trailing sections/pages after we exit the main loop. * e-plugin.c (e_plugin_get_type): make ~/.eplugins the default eplugin location, not ~/.eplug. 2004-10-18 Not Zed <NotZed@Ximian.com> * e-config.h: fix some forward decls. svn path=/trunk/; revision=27644
Diffstat (limited to 'e-util/e-plugin.c')
-rw-r--r--e-util/e-plugin.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/e-util/e-plugin.c b/e-util/e-plugin.c
index 0dd8fb4e17..959d1391a6 100644
--- a/e-util/e-plugin.c
+++ b/e-util/e-plugin.c
@@ -187,7 +187,7 @@ e_plugin_get_type(void)
/* Add the global path */
e_plugin_add_load_path(EVOLUTION_PLUGINDIR);
- path = g_build_filename(g_get_home_dir(), ".eplug", NULL);
+ path = g_build_filename(g_get_home_dir(), ".eplugins", NULL);
}
p = path;
@@ -343,8 +343,9 @@ ep_load_pending(EPlugin *ep, EPluginHookClass *type)
* @path: The path to add to search for plugins.
*
* Add a path to be searched when e_plugin_load_plugins() is called.
- * By default ~/.eplug is used as the search path unless overriden by
- * the environmental variable %EVOLUTION_PLUGIN_PATH.
+ * By default the system plugin directory and ~/.eplugins is used as
+ * the search path unless overriden by the environmental variable
+ * %EVOLUTION_PLUGIN_PATH.
*
* %EVOLUTION_PLUGIN_PATH is a : separated list of paths to search for
* plugin definitions in order.