aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--emms-player-mpd.el12
1 files changed, 2 insertions, 10 deletions
diff --git a/emms-player-mpd.el b/emms-player-mpd.el
index 16e8c8b..176d50d 100644
--- a/emms-player-mpd.el
+++ b/emms-player-mpd.el
@@ -127,17 +127,9 @@ leave it set to nil."
directory)
:group 'emms-player-mpd)
-(defcustom emms-player-mpd-connect-function
- (if (and (fboundp 'open-network-stream-nowait)
- ;; CVS Emacs claims to define open-network-stream-nowait on
- ;; windows, however, it does, in fact, not work.
- (not (memq system-type '(windows-nt cygwin ms-dos darwin))))
- 'open-network-stream-nowait
- 'open-network-stream)
+(defcustom emms-player-mpd-connect-function 'open-network-stream
"Function used to initiate the connection to MusicPD.
-It should take same arguments as `open-network-stream' does.
-
-This will usually be auto-detected correctly."
+It should take same arguments as `open-network-stream' does."
:type 'function
:group 'emms-player-mpd)