summaryrefslogtreecommitdiff
path: root/openbox/openbox.c
diff options
context:
space:
mode:
Diffstat (limited to 'openbox/openbox.c')
-rw-r--r--openbox/openbox.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/openbox/openbox.c b/openbox/openbox.c
index db14afb0..250ca6d0 100644
--- a/openbox/openbox.c
+++ b/openbox/openbox.c
@@ -240,10 +240,10 @@ gint main(gint argc, gchar **argv)
of the rc */
i = parse_startup();
- /* start up config which sets up with the parser */
- config_startup(i);
/* register all the available actions */
actions_startup(reconfigure);
+ /* start up config which sets up with the parser */
+ config_startup(i);
/* parse/load user options */
if (parse_load_rc(NULL, &doc, &node)) {
@@ -376,8 +376,8 @@ gint main(gint argc, gchar **argv)
sn_shutdown(reconfigure);
window_shutdown(reconfigure);
event_shutdown(reconfigure);
- actions_shutdown(reconfigure);
config_shutdown();
+ actions_shutdown(reconfigure);
modkeys_shutdown(reconfigure);
} while (reconfigure);
}