emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/mpv 191081e577 03/12: Fixes mpv-quit condition


From: ELPA Syncer
Subject: [nongnu] elpa/mpv 191081e577 03/12: Fixes mpv-quit condition
Date: Mon, 1 Aug 2022 09:58:51 -0400 (EDT)

branch: elpa/mpv
commit 191081e577a79430cc39b290533e2754fa207f39
Author: efimerspan <96617722+efimerspan@users.noreply.github.com>
Commit: efimerspan <96617722+efimerspan@users.noreply.github.com>

    Fixes mpv-quit condition
---
 mpv.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/mpv.el b/mpv.el
index ea32728840..5198126a44 100644
--- a/mpv.el
+++ b/mpv.el
@@ -457,9 +457,9 @@ See `mpv-start' if you need to pass further arguments and
 playback position."
   (interactive
    (list (yes-or-no-p "Save to watch later?")))
-  (when watch-later
+  (if watch-later
       (mpv-run-command "quit-watch-later")
-      (mpv-kill)))
+    (mpv-kill)))
 
 ;;;###autoload
 (defun mpv-kill ()



reply via email to

[Prev in Thread] Current Thread [Next in Thread]