Fix completely borked URI-ESCAPED-CHARS.

This commit is contained in:
sperber 2002-02-23 17:14:48 +00:00
parent bee65f4c22
commit 3a5a0e7867
1 changed files with 2 additions and 2 deletions

View File

@ -153,8 +153,8 @@
;;; slashes and colons would be escaped.
(define uri-escaped-chars
(char-set-union (char-set-complement char-set:letter+digit)
(string->char-set "$-_@.&!*\"'(),+")))
(char-set-complement (char-set-union char-set:letter+digit
(string->char-set "$-_@.&!*\"'(),+"))))
;;; Takes a set of chars to escape. This is because we sometimes need to
;;; escape larger sets of chars for different parts of a URI.