.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'.
+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):
(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:
& ==> &
< ==> <
> ==> >
(key2 val2)
(key3 val1 val2)
(key4)
- (key5 ""))
+ (key5 \"\"))
\(This is the same format as produced by `url-parse-query-string')