]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/url/url-util.el (url-unhex-string): Doc fix.
authorEli Zaretskii <eliz@gnu.org>
Sun, 4 Jul 2021 12:04:52 +0000 (15:04 +0300)
committerEli Zaretskii <eliz@gnu.org>
Sun, 4 Jul 2021 12:04:52 +0000 (15:04 +0300)
lisp/url/url-util.el

index 7c913bcb1a9469a4749ef04e3774776dfba4080e..8b79736d004e813ac07dbb678faf49935a264729 100644 (file)
@@ -335,10 +335,13 @@ instead of just \"key\" as in the example above."
 
 ;;;###autoload
 (defun url-unhex-string (str &optional allow-newlines)
-  "Remove %XX embedded spaces, etc in a URL.
+  "Decode %XX sequences in a percent-encoded URL.
 If optional second argument ALLOW-NEWLINES is non-nil, then allow the
 decoding of carriage returns and line feeds in the string, which is normally
-forbidden in URL encoding."
+forbidden in URL encoding.
+
+The resulting string in general requires decoding using an
+appropriate coding-system; see `decode-coding-string'."
   (setq str (or str ""))
   (let ((tmp "")
        (case-fold-search t))