aboutsummaryrefslogtreecommitdiff
path: root/lisp/emms-source-file.el
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 /lisp/emms-source-file.el
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.
Diffstat (limited to 'lisp/emms-source-file.el')
-rw-r--r--lisp/emms-source-file.el1
1 files changed, 1 insertions, 0 deletions
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 "\\).*"))