diff options
author | Michael Olson <mwolson@gnu.org> | 2006-06-10 23:05:00 +0000 |
---|---|---|
committer | Michael Olson <mwolson@gnu.org> | 2006-06-10 23:05:00 +0000 |
commit | 0b2e933c5c46532b2e94cf4542571d2bdfd16862 (patch) | |
tree | 694e6a78868619b5d8336f7340f8464840b57243 | |
parent | 3540a17fdd5792376cdb78695280a15ee189eec5 (diff) |
Use better exclude regexp, so that people can load music files with '#' in the middle of the name.
darcs-hash:20060610230507-1bfb2-b43f8403de4b1123ef7a71408f86510b7a553e63.gz
-rw-r--r-- | emms-source-file.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/emms-source-file.el b/emms-source-file.el index 7ccc0c8..b261746 100644 --- a/emms-source-file.el +++ b/emms-source-file.el @@ -70,7 +70,7 @@ find, but it's faster." :group 'emms-source-file) (defcustom emms-source-file-exclude-regexp - (concat "\\`\\(.*\\.?#.*\\|.*,v\\|.*~\\|\\.\\.?\\|,.*\\)\\'\\|" + (concat "\\`\\(#.*#\\|.*,v\\|.*~\\|\\.\\.?\\|\\.#.*\\|,.*\\)\\'\\|" "/\\(CVS\\|RCS\\|\\.arch-ids\\|{arch}\\|,.*\\|\\.svn\\|" "_darcs\\)\\(/\\|\\'\\)") "A regexp matching files to be ignored when adding directories. |