diff options
author | Michael Olson <mwolson@gnu.org> | 2008-02-15 05:01:00 +0000 |
---|---|---|
committer | Michael Olson <mwolson@gnu.org> | 2008-02-15 05:01:00 +0000 |
commit | c0ea2609fc6c3e26047f4b9d10dc04348b60719c (patch) | |
tree | 211edc2b527ed94e7e3abc1ce47d14fe1570f21c | |
parent | 6f8dc64b8d9b65887a29a0f94705cbf9ac2bf631 (diff) |
emms-url: Include forward slashes in URL regexp.
darcs-hash:20080215050112-1bfb2-ab58d7205a9dc94b780e463d69a946e9bc2cdc06.gz
-rw-r--r-- | emms-url.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/emms-url.el b/emms-url.el index 59c09f5..302ce36 100644 --- a/emms-url.el +++ b/emms-url.el @@ -36,7 +36,7 @@ e.g., (url-quote \"abc def\") => \"abc%20def\"." (or safe (setq safe "")) (save-match-data - (string-match "\\`\\([^:]+:\\)\\(.+\\)\\'" s) + (string-match "\\`\\([^:]+://\\)\\(.+\\)\\'" s) (let ((handler (match-string 1 s)) (loc (or (match-string 2 s) s))) (concat handler |