summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2018-05-01 03:14:30 +0200
committerJan Ekström <jeebjp@gmail.com>2018-05-03 01:20:01 +0300
commit76d8683e2ed9b40c955ca2fb25bce98fe1a156b8 (patch)
treeddc6293e56ad882fbf3cbd643998f08ad5dd97e3
parentfb9bbf2a0d7f8dba0d0674595cc2dc0dab68ad94 (diff)
downloadmpv-76d8683e2ed9b40c955ca2fb25bce98fe1a156b8.tar.bz2
mpv-76d8683e2ed9b40c955ca2fb25bce98fe1a156b8.tar.xz
input: rename cmd_parse.h to cmd.h
-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