summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--input/cmd.h (renamed from input/cmd_parse.h)0
-rw-r--r--input/cmd_list.c2
-rw-r--r--input/cmd_parse.c2
-rw-r--r--input/input.c2
-rw-r--r--input/input.h2
5 files changed, 3 insertions, 5 deletions
diff --git a/input/cmd_parse.h b/input/cmd.h
index 13a055ff13..13a055ff13 100644
--- a/input/cmd_parse.h
+++ b/input/cmd.h
diff --git a/input/cmd_list.c b/input/cmd_list.c
index 23a5da774e..d57b0796e4 100644
--- a/input/cmd_list.c
+++ b/input/cmd_list.c
@@ -25,7 +25,7 @@
#include "input.h"
#include "cmd_list.h"
-#include "cmd_parse.h"
+#include "cmd.h"
// 0: no, 1: maybe, 2: sure
static int is_abort_cmd(struct mp_cmd *cmd)
diff --git a/input/cmd_parse.c b/input/cmd_parse.c
index f401e5b9c7..95f9f9ac50 100644
--- a/input/cmd_parse.c
+++ b/input/cmd_parse.c
@@ -22,7 +22,7 @@
#include "common/msg.h"
#include "options/m_option.h"
-#include "cmd_parse.h"
+#include "cmd.h"
#include "cmd_list.h"
#include "input.h"
diff --git a/input/input.c b/input/input.c
index 03771dc2bb..70e94dcc5d 100644
--- a/input/input.c
+++ b/input/input.c
@@ -39,8 +39,6 @@
#include "input.h"
#include "keycodes.h"
-#include "cmd_list.h"
-#include "cmd_parse.h"
#include "osdep/threads.h"
#include "osdep/timer.h"
#include "common/msg.h"
diff --git a/input/input.h b/input/input.h
index 16b203a5e7..6af170319b 100644
--- a/input/input.h
+++ b/input/input.h
@@ -22,7 +22,7 @@
#include "misc/bstr.h"
#include "cmd_list.h"
-#include "cmd_parse.h"
+#include "cmd.h"
// For mp_input_put_key(): release all keys that are down.
#define MP_INPUT_RELEASE_ALL -1