commit 1e5626bd46b11522dcaf048d32e9d42bde004d41
parent 3888cc3ed6a08deaaa645f4eb12dc8fe00bd9fe2
Author: Jacob R. Edwards <jacobouno@protonmail.com>
Date: Wed, 14 Jul 2021 17:38:15 -0700
Rename prev command to previous
All other commands use full words; this should too.
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/aps/command.c b/aps/command.c
@@ -180,7 +180,7 @@ aps_next(struct aps *aps, int s, int argc, char **argv)
}
char *
-aps_prev(struct aps *aps, int s, int argc, char **argv)
+aps_previous(struct aps *aps, int s, int argc, char **argv)
{
struct item *n;
@@ -267,7 +267,7 @@ aps_command(struct aps *aps, int s)
{ "next", aps_next },
{ "pause", aps_pause },
{ "play", aps_play },
- { "prev", aps_prev },
+ { "previous", aps_prev },
{ "remove", aps_remove },
{ "seek", aps_seek },
{ "status", aps_status },