diff options
author | Yoni Rabkin <yoni@rabkins.net> | 2017-12-13 17:36:07 -0500 |
---|---|---|
committer | Yoni Rabkin <yoni@rabkins.net> | 2017-12-13 17:36:07 -0500 |
commit | 728114cc41bf56fe7f442df48366a66e209e5528 (patch) | |
tree | 6156c4efeff6e3f646c37ab290a84b26e8b68363 | |
parent | cd53cecbd5a0036de89a373dc71567a9630b33a4 (diff) |
* lisp/emms-source-file.el: fix behavior
This never does the right thing, so let it work like add-directory.
-rw-r--r-- | lisp/emms-source-file.el | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lisp/emms-source-file.el b/lisp/emms-source-file.el index 04faf9c..d2ac164 100644 --- a/lisp/emms-source-file.el +++ b/lisp/emms-source-file.el @@ -104,8 +104,7 @@ user." (interactive (list (read-file-name "Play file: " emms-source-file-default-directory emms-source-file-default-directory - t - (thing-at-point 'filename)))) + t))) (if (file-directory-p file) (emms-source-directory file) (emms-playlist-insert-track |