* gnus-art.el (gnus-url-parse-query-string): Allow new line in value.
authorShengHuo ZHU <zsh@cs.rochester.edu>
Fri, 18 Jan 2002 16:25:22 +0000 (16:25 +0000)
committerShengHuo ZHU <zsh@cs.rochester.edu>
Fri, 18 Jan 2002 16:25:22 +0000 (16:25 +0000)
lisp/ChangeLog
lisp/gnus-art.el

index 85630c6..44343f0 100644 (file)
@@ -1,3 +1,7 @@
+2002-01-18  ShengHuo ZHU  <zsh@cs.rochester.edu>
+
+       * gnus-art.el (gnus-url-parse-query-string): Allow new line in value.
+
 2002-01-18  Simon Josefsson  <jas@extundo.com>
 
        * imap.el (imap-starttls-p): Don't check for binary.
index 4531dee..0ae3e52 100644 (file)
@@ -5516,7 +5516,7 @@ specified by `gnus-button-alist'."
       (if (not (string-match "=" cur))
          nil                           ; Grace
        (setq key (gnus-url-unhex-string (substring cur 0 (match-beginning 0)))
-             val (gnus-url-unhex-string (substring cur (match-end 0) nil)))
+             val (gnus-url-unhex-string (substring cur (match-end 0) nil) t))
        (if downcase
            (setq key (downcase key)))
        (setq cur (assoc key retval))