branch: elpa/mpv
commit 6fe510798a43b3f93ec00a098d65020ab9f31439
Author: Johann Klähn <kljoh...@gmail.com>
Commit: Johann Klähn <kljoh...@gmail.com>

    fix mpv-speed-set
---
 mpv.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/mpv.el b/mpv.el
index d829faf894..6b2c972db3 100644
--- a/mpv.el
+++ b/mpv.el
@@ -254,7 +254,7 @@ This can be used with the `org-open-at-point-functions' 
hook."
 (defun speed-set (factor)
   "Set playback speed to FACTOR."
   (interactive "nFactor: ")
-  (-enqueue `("multiply" "speed" ,(abs factor)) #'ignore))
+  (-enqueue `("set" "speed" ,(abs factor)) #'ignore))
 
 (defun speed-increase (steps)
   "Increase playback speed by STEPS factors of `mpv-speed-step'."

Reply via email to