X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=include%2Fconfig_parser.h;h=28c28e4882e7f2b6fa220cfe98ca4d4b391f1819;hb=96e1b80371b985d4f67b36e6cb48e61b5fb83995;hp=e18e5cf2a892180436c870b0261ab7035ec8026f;hpb=45fa4b7d232ee23ad25802fe3f7c9c3a75fca77e;p=i3%2Fi3 diff --git a/include/config_parser.h b/include/config_parser.h index e18e5cf2..28c28e48 100644 --- a/include/config_parser.h +++ b/include/config_parser.h @@ -2,7 +2,7 @@ * vim:ts=4:sw=4:expandtab * * i3 - an improved dynamic tiling window manager - * © 2009-2012 Michael Stapelberg and contributors (see also: LICENSE) + * © 2009 Michael Stapelberg and contributors (see also: LICENSE) * * config_parser.h: config parser-related definitions * @@ -33,7 +33,10 @@ struct ConfigResultIR *parse_config(const char *input, struct context *context); /** * Parses the given file by first replacing the variables, then calling - * parse_config and possibly launching i3-nagbar. + * parse_config and launching i3-nagbar if use_nagbar is true. + * + * The return value is a boolean indicating whether there were errors during + * parsing. * */ -void parse_file(const char *f); +bool parse_file(const char *f, bool use_nagbar);