aboutsummaryrefslogtreecommitdiff
path: root/emms-source-file.el
diff options
context:
space:
mode:
authorTrent Buck <trentbuck@gmail.com>2005-10-28 14:25:00 +0000
committerTrent Buck <trentbuck@gmail.com>2005-10-28 14:25:00 +0000
commita56e48ca823adde74c7f84103b5ab22f8de89661 (patch)
tree54b736c8aa869e0847f39fa751bcc380c8bccb75 /emms-source-file.el
parentb5bd47545ea803d97bd9107fee096f9c064dcd87 (diff)
emms-source-file.el: add missing third clause to AUTOLOAD calls.
darcs-hash:20051028142538-8f417-24f8937ae61e4b99fdf6e0908aca171855f0785e.gz
Diffstat (limited to 'emms-source-file.el')
-rw-r--r--emms-source-file.el24
1 files changed, 12 insertions, 12 deletions
diff --git a/emms-source-file.el b/emms-source-file.el
index 1329c71..f00ffe6 100644
--- a/emms-source-file.el
+++ b/emms-source-file.el
@@ -79,8 +79,8 @@ find, but it's faster."
;;; Sources
-;;;###autoload (autoload 'emms-play-file "emms-source-file" t)
-;;;###autoload (autoload 'emms-add-file "emms-source-file" t)
+;;;###autoload (autoload 'emms-play-file "emms-source-file" nil t)
+;;;###autoload (autoload 'emms-add-file "emms-source-file" nil t)
(define-emms-source file (file)
"An EMMS source for a single file - either FILE, or queried from the
user."
@@ -93,8 +93,8 @@ user."
(emms-playlist-insert-track
(emms-track 'file (expand-file-name file)))))
-;;;###autoload (autoload 'emms-play-directory "emms-source-file" t)
-;;;###autoload (autoload 'emms-add-directory "emms-source-file" t)
+;;;###autoload (autoload 'emms-play-directory "emms-source-file" nil t)
+;;;###autoload (autoload 'emms-add-directory "emms-source-file" nil t)
(define-emms-source directory (dir)
"An EMMS source for a whole directory tree - either DIR, or queried
from the user"
@@ -108,8 +108,8 @@ from the user"
(emms-track 'file (expand-file-name file))))
(directory-files dir t (emms-source-file-regex))))
-;;;###autoload (autoload 'emms-play-directory-tree "emms-source-file" t)
-;;;###autoload (autoload 'emms-add-directory-tree "emms-source-file" t)
+;;;###autoload (autoload 'emms-play-directory-tree "emms-source-file" nil t)
+;;;###autoload (autoload 'emms-add-directory-tree "emms-source-file" nil t)
(define-emms-source directory-tree (dir)
"An EMMS source for multiple directory trees - either DIR, or the
value of `emms-source-file-default-directory'."
@@ -124,8 +124,8 @@ value of `emms-source-file-default-directory'."
(emms-source-file-directory-tree (expand-file-name dir)
(emms-source-file-regex))))
-;;;###autoload (autoload 'emms-play-find "emms-source-file" t)
-;;;###autoload (autoload 'emms-add-find "emms-source-file" t)
+;;;###autoload (autoload 'emms-play-find "emms-source-file" nil t)
+;;;###autoload (autoload 'emms-add-find "emms-source-file" nil t)
(define-emms-source find (dir regex)
"An EMMS source that will find files in DIR or
`emms-source-file-default-directory' that match REGEXP."
@@ -142,8 +142,8 @@ value of `emms-source-file-default-directory'."
;; FIXME! Does this work? -js
-;;;###autoload (autoload 'emms-play-m3u-playlist "emms-source-file" t)
-;;;###autoload (autoload 'emms-add-m3u-playlist "emms-source-file" t)
+;;;###autoload (autoload 'emms-play-m3u-playlist "emms-source-file" nil t)
+;;;###autoload (autoload 'emms-add-m3u-playlist "emms-source-file" nil t)
(define-emms-source m3u-playlist (playlist)
"A source for simple .m3u playlists. It ignores empty lines, or
lines starting with '#'."
@@ -262,8 +262,8 @@ files) can play."
;; Strictly speaking, this does not belong in this file (URLs are not
;; real files), but it's close enough :-)
-;;;###autoload (autoload 'emms-play-url "emms-source-file" t)
-;;;###autoload (autoload 'emms-add-url "emms-source-file" t)
+;;;###autoload (autoload 'emms-play-url "emms-source-file" nil t)
+;;;###autoload (autoload 'emms-add-url "emms-source-file" nil t)
(define-emms-source url (url)
"An EMMS source for an URL - for example, for streaming."
(interactive "sPlay URL: ")