Remove useless reload_* messages

This commit is contained in:
Bastien Dejean 2013-03-12 21:43:44 +01:00
parent b273b9c9bd
commit f7e38e44a7
3 changed files with 0 additions and 14 deletions

View file

@ -179,10 +179,6 @@ The following messages are handled:
- `adopt_orphans` — Manage all the unmanaged windows remaining from a previous session.
- `reload_autostart` — Reload the autostart file.
- `reload_settings` — Reload the default settings.
- `restore FILE_PATH` — Restore the layout of each desktop from the content of `FILE_PATH`.
- `quit [EXIT_STATUS]` — Quit.

View file

@ -257,12 +257,6 @@ Remove the rules with the given UIDs.
.BI adopt_orphans
Manage all the unmanaged windows remaining from a previous session.
.TP
.BI reload_autostart
Reload the autostart file.
.TP
.BI reload_settings
Reload the default settings.
.TP
.BI restore " FILE_PATH"
Restore the layout of each desktop from the content of FILE_PATH.
.TP

View file

@ -425,10 +425,6 @@ void process_message(char *msg, char *rsp)
return;
} else if (strcmp(cmd, "adopt_orphans") == 0) {
adopt_orphans();
} else if (strcmp(cmd, "reload_autostart") == 0) {
run_autostart();
} else if (strcmp(cmd, "reload_settings") == 0) {
load_settings();
} else if (strcmp(cmd, "restore") == 0) {
char *arg = strtok(NULL, TOK_SEP);
restore(arg);