summaryrefslogtreecommitdiffstats
path: root/input/cmd_list.c
diff options
context:
space:
mode:
authorPhilip Sequeira <phsequei@gmail.com>2015-07-11 14:07:58 -0400
committerwm4 <wm4@nowhere>2015-07-11 23:46:49 +0200
commit4a4f788a68a0ca73dcc3eed6ccd0533be4912b20 (patch)
tree5b46154b0d44ca105052d1f091edfe1a882fe86d /input/cmd_list.c
parent898855cc0d076e4132140abce5913c298de83a00 (diff)
downloadmpv-4a4f788a68a0ca73dcc3eed6ccd0533be4912b20.tar.bz2
mpv-4a4f788a68a0ca73dcc3eed6ccd0533be4912b20.tar.xz
player: use exit code 0 by default for quit, 4 for signals, etc.
Default key bindings in encoding mode also use code 4, because scripts will probably want to fail if encoding is aborted (leaving an incomplete file).
Diffstat (limited to 'input/cmd_list.c')
-rw-r--r--input/cmd_list.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/input/cmd_list.c b/input/cmd_list.c
index 59c717ed4a..53e25cc41c 100644
--- a/input/cmd_list.c
+++ b/input/cmd_list.c
@@ -76,8 +76,8 @@ const struct mp_cmd_def mp_cmds[] = {
{ MP_CMD_REVERT_SEEK, "revert-seek", {
OARG_FLAGS(0, ({"mark", 1})),
}},
- { MP_CMD_QUIT, "quit", { OARG_INT(4) } },
- { MP_CMD_QUIT_WATCH_LATER, "quit-watch-later", { OARG_INT(4) } },
+ { MP_CMD_QUIT, "quit", { OARG_INT(0) } },
+ { MP_CMD_QUIT_WATCH_LATER, "quit-watch-later", { OARG_INT(0) } },
{ MP_CMD_STOP, "stop", },
{ MP_CMD_FRAME_STEP, "frame-step", .allow_auto_repeat = true,
.on_updown = true },