]> code.delx.au - gnu-emacs/commitdiff
url-util.el: Fix two docstrings.
authorBastien Guerry <bzg@gnu.org>
Sat, 29 Sep 2012 20:45:44 +0000 (22:45 +0200)
committerBastien Guerry <bzg@gnu.org>
Sat, 29 Sep 2012 20:45:44 +0000 (22:45 +0200)
Makefile.in
lisp/url/ChangeLog
lisp/url/url-util.el

index 571013e32444988ef503f0d7c0cd8f7012d1df9a..4e94a4e3f23301c93ad0e7bc3de1200e7b9c1cd2 100644 (file)
@@ -281,6 +281,19 @@ all: ${SUBDIR}
 
 .PHONY: all ${SUBDIR} blessmail epaths-force FRC
 
+help::
+       $(info )
+       $(info make all               Compile and build Emacs.)
+       $(info make install           Install Emacs.)
+       $(info make TAGS              Update tags tables.)
+       $(info )
+       $(info make clean             Delete files created by building Emacs.)
+       $(info make distclean         Delete all files created by building or configuring.)
+       $(info make maintainer-clean  Like distclean, but delete more files: *.elc, etc.)
+       $(info make extra-clean       Like maintainer-clean, but delete backups and autosaves.)
+       $(info )
+       $(info make bootstrap         Compile and build from a clean state.)
+
 removenullpaths=sed -e 's/^://g' -e 's/:$$//g' -e 's/::/:/g'
 
 # Generate epaths.h from epaths.in.  This target is invoked by `configure'.
index 62665654654c0bc93d5e9f269c16f4b6383c14f3..279db5ee3e4492591192f6507445a02559727b15 100644 (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):
index 4761f71ad8f5c69bf6c442be3cf8fabb180eb4b6..038b7fcf7fe8eb9f324ef4c7528b437377005505 100644 (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')