aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYoni Rabkin <yoni@rabkins.net>2017-09-13 16:07:56 -0400
committerYoni Rabkin <yoni@rabkins.net>2017-09-13 16:07:56 -0400
commit881bfaef42e58e04822d944a51ccad0efb9ab7be (patch)
tree6ce04949f3858e765a46f3e90b289dabb8ffe99b
parent79793c0bb32620ad5b4db490c6e80ff8e5a20233 (diff)
* lisp/emms-source-file.el: follow symlinks
Emms-source-file-directory-tree-find now follows symlinks. Thank you Maxim Cournoyer for the patch.
-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 "\\).*"))