diff options
author | Mike Kazantsev <mk.fraggod@gmail.com> | 2018-07-02 14:57:48 +0500 |
---|---|---|
committer | fraggod@malediction <mk.fraggod@gmail.com> | 2018-07-02 14:57:48 +0500 |
commit | ae1e9834c874dcb471847e6a34367d0b22c6be62 (patch) | |
tree | 58fdca2c92246d04151c1b519effe9831a3c462a /lisp | |
parent | f5a09d93c86c676cbce490cf670f95e6fe127c9f (diff) |
* lisp/emms-player-mpv.el: fix emacs-26 ipc issue #3190 workaround check
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/emms-player-mpv.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emms-player-mpv.el b/lisp/emms-player-mpv.el index 1dc92d5..51cbb95 100644 --- a/lisp/emms-player-mpv.el +++ b/lisp/emms-player-mpv.el @@ -237,7 +237,7 @@ to indicate that playback should stop instead of switching to next track.") "Delay before issuing `emms-player-stopped' when mpv unexpectedly goes idle.") -(defvar emms-player-mpv-ipc-conn-emacs-26-workaround (> emacs-major-version 26) +(defvar emms-player-mpv-ipc-conn-emacs-26-workaround (>= emacs-major-version 26) "Non-nil to enable workaround for issue #31901 in emacs 26.0-26.1 and possibly later versions. These seem to fail to call sentinel function for unix socket network processes that were started with :nowait t, so blocking connections are used there instead.") |