diff options
author | Yoni Rabkin <yoni@rabkins.net> | 2017-09-13 16:07:56 -0400 |
---|---|---|
committer | Yoni Rabkin <yoni@rabkins.net> | 2017-09-13 16:07:56 -0400 |
commit | 881bfaef42e58e04822d944a51ccad0efb9ab7be (patch) | |
tree | 6ce04949f3858e765a46f3e90b289dabb8ffe99b /lisp | |
parent | 79793c0bb32620ad5b4db490c6e80ff8e5a20233 (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')
-rw-r--r-- | lisp/emms-source-file.el | 1 |
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 "\\).*")) |