branch: externals/emms commit 22f3d9e5359c565b33f55715f90fbde35e4f675e Author: Yoni Rabkin <y...@rabkins.net> Commit: Yoni Rabkin <y...@rabkins.net>
* emms-streams.el: fix autoloads small patch by Gerard Vermeulen --- emms-streams.el | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/emms-streams.el b/emms-streams.el index bb8a29c2c6..c223b95a34 100644 --- a/emms-streams.el +++ b/emms-streams.el @@ -150,13 +150,14 @@ ;;; ------------------------------------------------------------------ (defun emms-streams-install () - (interactive) "Install the built-in streams file." + (interactive) (emms-streams-install-file emms-streams-file)) +;;;###autoload (defun emms-streams () - (interactive) "Create or switch to the built-in streaming audio playlist." + (interactive) (when (and (not (file-exists-p emms-streams-file)) (y-or-n-p "Emms' built-in streams file hasn't been installed yet. Install it now?")) (emms-streams-install))