aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorWarren Dukes <warren.dukes@gmail.com>2004-06-05 16:01:44 +0000
committerWarren Dukes <warren.dukes@gmail.com>2004-06-05 16:01:44 +0000
commita8a8aacdb360f1bcb4cdebf1a17fa7ea3a089277 (patch)
tree27dd29ba89c4879f818eda39dc1d3a6ad686eeb0 /doc
parent69d787b3e14b818033da230e1d8497aa132ef4d6 (diff)
downloadmpd-a8a8aacdb360f1bcb4cdebf1a17fa7ea3a089277.tar.gz
mpd-a8a8aacdb360f1bcb4cdebf1a17fa7ea3a089277.tar.xz
mpd-a8a8aacdb360f1bcb4cdebf1a17fa7ea3a089277.zip
implement list_OK/command_list_ok_begin
update COMMANDS git-svn-id: https://svn.musicpd.org/mpd/trunk@1344 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'doc')
-rw-r--r--doc/COMMANDS11
1 files changed, 10 insertions, 1 deletions
diff --git a/doc/COMMANDS b/doc/COMMANDS
index d739200fb..263e4f0a5 100644
--- a/doc/COMMANDS
+++ b/doc/COMMANDS
@@ -110,6 +110,10 @@ playlistinfo <int song>
displays list of songs in the playlist
_song_ is optional and species a single song to displa info for
+plchanges <playlist version>
+ displays changed songs currently in the playlist since
+ _playlist version_
+
previous
plays previous song in playlist
@@ -198,6 +202,10 @@ at once using a command list. The command list beings with:
command_list_begin
+or:
+
+command_list_ok_begin
+
And ends with:
command_list_end
@@ -205,4 +213,5 @@ command_list_end
It does not execute any commands until the list has ended. The return
value is whatever the return for a list of commands is. On success
for all commands, OK is returned. If a command fails, no more commands
-are executed and the appropriate ACK error is returned.
+are executed and the appropriate ACK error is returned. If "command_list_ok_begin is used", "list_OK\n" is returned for each successful command executed
+in the command list.