aboutsummaryrefslogtreecommitdiff
path: root/emms-url.el
diff options
context:
space:
mode:
authorMichael Olson <mwolson@gnu.org>2007-01-05 07:38:00 +0000
committerMichael Olson <mwolson@gnu.org>2007-01-05 07:38:00 +0000
commitf2a4e314641d755b65b420055ebd567a5e2aac01 (patch)
treea517b029496d4da1e5fcc0f6fbd0ad1239e601fa /emms-url.el
parent48b1d322af14361065d2b1b67d7817cd86b14370 (diff)
emms-url: Only escape spaces and newlines, on second thought
darcs-hash:20070105073821-1bfb2-160387bb8220df00cc01d0c69d441ca34069e44d.gz
Diffstat (limited to 'emms-url.el')
-rw-r--r--emms-url.el6
1 files changed, 1 insertions, 5 deletions
diff --git a/emms-url.el b/emms-url.el
index 2af1027..1889347 100644
--- a/emms-url.el
+++ b/emms-url.el
@@ -28,11 +28,7 @@
(require 'url)
(defvar emms-url-specials
- '((?\" . "&quot;")
- (?\< . "&lt;")
- (?\> . "&gt;")
- (?\& . "&amp;")
- (?\ . "%20")
+ '((?\ . "%20")
(?\n . "%0D%0A"))
"*An alist of characters which must be represented specially in URLs.
The transformation is the key of the pair.")