module: remove 'with' from expose-context

This commit is contained in:
Daniel Eklöf 2019-01-13 14:33:58 +01:00
parent a425378576
commit 9276724113
3 changed files with 16 additions and 16 deletions

View file

@ -13,8 +13,8 @@ struct module;
struct module_info {
bool (*verify_conf)(keychain_t *chain, const struct yml_node *node);
struct module *(*from_conf)(const struct yml_node *node,
struct conf_inherit inherited);
struct module *(*from_conf)(
const struct yml_node *node, struct conf_inherit inherited);
#define MODULE_COMMON_ATTRS \
{"font", false, &conf_verify_font}, \
@ -30,7 +30,6 @@ struct module_run_context {
struct module_expose_context {
struct exposable *exposable;
int width;
void *private;
};