patch to allow exec_always in configure file

fixed indentation, updated docs
This commit is contained in:
Claudio Marforio
2011-07-12 12:24:01 +02:00
committed by Michael Stapelberg
parent 5555c0fd3b
commit cc24a96e96
6 changed files with 37 additions and 6 deletions

View File

@ -174,13 +174,17 @@ struct Binding {
};
/**
* Holds a command specified by an exec-line in the config (see src/config.c)
* Holds a command specified by either an:
* - exec-line
* - exec_always-line
* in the config (see src/config.c)
*
*/
struct Autostart {
/** Command, like in command mode */
char *command;
TAILQ_ENTRY(Autostart) autostarts;
TAILQ_ENTRY(Autostart) autostarts_always;
};
/**