Remove unused header file and references to it

This commit is contained in:
Anaël Beutot 2020-12-30 18:41:52 +01:00
parent 74b461e25e
commit b1fb440345
3 changed files with 2 additions and 17 deletions

View File

@ -400,8 +400,8 @@ the correct state.
Then, it looks through all bindings and gets the one which matches the received Then, it looks through all bindings and gets the one which matches the received
event. event.
The bound command is parsed by the cmdparse lexer/parser, see +parse_cmd+ in The bound command is parsed by the i3 parser, see +parse_command+ in
+src/cmdparse.y+. +src/commands_parser.c+.
== Manage windows (src/main.c, manage_window() and reparent_window()) == Manage windows (src/main.c, manage_window() and reparent_window())

View File

@ -56,7 +56,6 @@
#include "render.h" #include "render.h"
#include "window.h" #include "window.h"
#include "match.h" #include "match.h"
#include "cmdparse.h"
#include "xcursor.h" #include "xcursor.h"
#include "resize.h" #include "resize.h"
#include "sighandler.h" #include "sighandler.h"

View File

@ -1,14 +0,0 @@
/*
* vim:ts=4:sw=4:expandtab
*
* i3 - an improved dynamic tiling window manager
* © 2009 Michael Stapelberg and contributors (see also: LICENSE)
*
* cmdparse.y: the parser for commands you send to i3 (or bind on keys)
*
*/
#pragma once
#include <config.h>
char *parse_cmd(const char *new);