]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/mpc.el (mpc-mode-menu, mpc-toggle-play): Fix docstrings
authorMark Oteiza <mvoteiza@udel.edu>
Wed, 14 Oct 2015 21:32:47 +0000 (17:32 -0400)
committerMark Oteiza <mvoteiza@udel.edu>
Wed, 14 Oct 2015 21:32:47 +0000 (17:32 -0400)
lisp/mpc.el

index 0f8283aeb03318ee633153c9f942d4a62d43d095..f83b478e71c34215393146e0fa88aa03513bcf88 100644 (file)
@@ -1119,8 +1119,8 @@ If PLAYLIST is t or nil or missing, use the main playlist."
   "Menu for MPC.el."
   '("MPC.el"
     ["Play/Pause" mpc-toggle-play]
-    ["Next track" mpc-next]
-    ["Previous track" mpc-prev]
+    ["Next Track" mpc-next]
+    ["Previous Track" mpc-prev]
     ["Add new browser" mpc-tagbrowser]
     ["Update DB" mpc-update]
     ["Quit" mpc-quit]))
@@ -2354,7 +2354,7 @@ This is used so that they can be compared with `eq', which is needed for
   (mpc-cmd-pause "0"))
 
 (defun mpc-toggle-play ()
-  "Toggles between play and pause.
+  "Toggle between play and pause.
 If stopped, start playback."
   (interactive)
   (if (member (cdr (assq 'state (mpc-cmd-status))) '("stop"))