From: Stefan Kangas Date: Mon, 8 Jul 2024 15:49:14 +0000 (+0200) Subject: Checkdoc fixes in `url/*.el` X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=c100cdb34e511b955271f67947b37849d3174ba4;p=emacs.git Checkdoc fixes in `url/*.el` * lisp/url/url-util.el (url-query-key-value-allowed-chars): * lisp/url/url.el (url-retrieve-synchronously): Checkdoc fixes. (cherry picked from commit ed2986494c7c3fb6aaeb7647c6812c4091500222) --- diff --git a/lisp/url/url-util.el b/lisp/url/url-util.el index f41c5b07ffa..8e958eee0b7 100644 --- a/lisp/url/url-util.el +++ b/lisp/url/url-util.el @@ -378,7 +378,7 @@ These characters are specified in RFC 3986, Appendix A.") (aset vec ?\; nil) vec) "Allowed-character byte mask for keys and values in the query segment of a URI. -url-query-allowed-chars minus '=', '&', and ';'.") +`url-query-allowed-chars' minus '=', '&', and ';'.") ;;;###autoload (defun url-encode-url (url) diff --git a/lisp/url/url.el b/lisp/url/url.el index 0ac2917b213..2bf62d7cfbb 100644 --- a/lisp/url/url.el +++ b/lisp/url/url.el @@ -227,7 +227,7 @@ URL-encoded before it's used." (defun url-retrieve-synchronously (url &optional silent inhibit-cookies timeout) "Retrieve URL synchronously. Return the buffer containing the data, or nil if there are no data -associated with it (the case for dired, info, or mailto URLs that need +associated with it (the case for Dired, info, or mailto URLs that need no further processing). URL is either a string or a parsed URL. If SILENT is non-nil, don't do any messaging while retrieving.