config: delete old parser, new lexer/parser is the default by now

This commit is contained in:
Michael Stapelberg
2009-11-22 20:25:33 +01:00
parent 52945486fd
commit 4ace0d2138
4 changed files with 52 additions and 400 deletions

View File

@ -7,8 +7,10 @@
*
* See file LICENSE for license information.
*
* include/config.h: Contains all structs/variables for
* the configurable part of i3
* include/config.h: Contains all structs/variables for the configurable
* part of i3 as well as functions handling the configuration file (calling
* the parser (src/cfgparse.y) with the correct path, switching key bindings
* mode).
*
*/
@ -21,7 +23,6 @@
typedef struct Config Config;
extern Config config;
extern bool config_use_lexer;
extern SLIST_HEAD(modes_head, Mode) modes;
/**
@ -124,4 +125,7 @@ void grab_all_keys(xcb_connection_t *conn);
*/
void switch_mode(xcb_connection_t *conn, const char *new_mode);
/* prototype for src/cfgparse.y */
void parse_file(const char *f);
#endif