aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--AUTHORS6
-rw-r--r--NEWS1
-rw-r--r--lisp/emms-source-file.el1
3 files changed, 6 insertions, 2 deletions
diff --git a/AUTHORS b/AUTHORS
index 5c111f5..d508d77 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -36,8 +36,10 @@ which is to say very simple patches and those with total of 12 lines
or fewer. We started recording trivial patches this way in June of
2017, so trivial patches before that date would not appear below.
-David Michael <fedora.dm0@gmail.com>
-tumashu <tumashu@163.com>
+David Michael
+tumashu
+Maxim Cournoyer
+
;; Local variables:
;; coding: utf-8
diff --git a/NEWS b/NEWS
index a181c33..79da5f2 100644
--- a/NEWS
+++ b/NEWS
@@ -1,5 +1,6 @@
News since version 4.3:
+ - emms-source-file-directory-tree-find now follows symlinks.
- Playlists can now be sorted by mtime.
- Move to cl-lib.
- Improve emms-volume.
diff --git a/lisp/emms-source-file.el b/lisp/emms-source-file.el
index 660cbd5..04faf9c 100644
--- a/lisp/emms-source-file.el
+++ b/lisp/emms-source-file.el
@@ -228,6 +228,7 @@ may be supplied using `emms-source-file-gnu-find'."
(with-temp-buffer
(call-process emms-source-file-gnu-find
nil t nil
+ "-L" ; follow symlinks
(expand-file-name dir)
"-type" "f"
"-iregex" (concat ".*\\(" regex "\\).*"))