Function: url-recreate-url-attributes
url-recreate-url-attributes is a byte-compiled function defined in
url-parse.el.gz.
This function is obsolete since 24.3.
Signature
(url-recreate-url-attributes URLOBJ)
Documentation
Recreate the attributes of an URL string from the parsed URLOBJ.
Source Code
;; Defined in /usr/src/emacs/lisp/url/url-parse.el.gz
(defun url-recreate-url-attributes (urlobj)
"Recreate the attributes of an URL string from the parsed URLOBJ."
(declare (obsolete nil "24.3"))
(when (url-attributes urlobj)
(concat ";"
(mapconcat (lambda (x)
(if (cdr x)
(concat (car x) "=" (cdr x))
(car x)))
(url-attributes urlobj) ";"))))