1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-15 10:30:25 -08:00

url-util.el: Fix two docstrings.

This commit is contained in:
Bastien Guerry 2012-09-29 22:45:44 +02:00
parent d2a54f135f
commit 04558d31ab
3 changed files with 21 additions and 3 deletions

View file

@ -1,3 +1,8 @@
2012-09-29 Bastien Guerry <bzg@gnu.org>
* url-util.el (url-insert-entities-in-string)
(url-build-query-string): Fix docstrings.
2012-09-25 Chong Yidong <cyd@gnu.org>
* url-parse.el (url-recreate-url-attributes):

View file

@ -132,8 +132,8 @@ If a list, it is a list of the types of messages to be logged."
(defun url-insert-entities-in-string (string)
"Convert HTML markup-start characters to entity references in STRING.
Also replaces the \" character, so that the result may be safely used as
an attribute value in a tag. Returns a new string with the result of the
conversion. Replaces these characters as follows:
an attribute value in a tag. Returns a new string with the result of the
conversion. Replaces these characters as follows:
& ==> &amp;
< ==> &lt;
> ==> &gt;
@ -294,7 +294,7 @@ Given a QUERY in the form:
(key2 val2)
(key3 val1 val2)
(key4)
(key5 ""))
(key5 \"\"))
\(This is the same format as produced by `url-parse-query-string')