summaryrefslogtreecommitdiffstats
path: root/input/cmd.h
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2018-05-01 03:36:39 +0200
committerJan Ekström <jeebjp@gmail.com>2018-05-03 01:20:01 +0300
commit88498bcc92305dccb8a73104f7996dd4253a0a2d (patch)
tree9dd98351d164a2b24f338a9af6dcff42554d33eb /input/cmd.h
parent407f5b407a932efead8dc0f7453acbeb9390d11a (diff)
downloadmpv-88498bcc92305dccb8a73104f7996dd4253a0a2d.tar.bz2
mpv-88498bcc92305dccb8a73104f7996dd4253a0a2d.tar.xz
input: rename weirdly named function
Diffstat (limited to 'input/cmd.h')
-rw-r--r--input/cmd.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/input/cmd.h b/input/cmd.h
index 18beca5ee8..a985d0394c 100644
--- a/input/cmd.h
+++ b/input/cmd.h
@@ -124,7 +124,8 @@ void mp_print_cmd_list(struct mp_log *out);
// Parse text and return corresponding struct mp_cmd.
// The location parameter is for error messages.
-struct mp_cmd *mp_input_parse_cmd_(struct mp_log *log, bstr str, const char *loc);
+struct mp_cmd *mp_input_parse_cmd_str(struct mp_log *log, bstr str,
+ const char *loc);
// Similar to mp_input_parse_cmd(), but takes a list of strings instead.
// Also, MP_ON_OSD_AUTO | MP_EXPAND_PROPERTIES are not set by default.