1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-29 07:58:28 +00:00

Doc fixes.

This commit is contained in:
Stefan Monnier 2004-04-12 04:05:50 +00:00
parent 30bfc9cebf
commit 61bbdf64e8

View File

@ -84,6 +84,7 @@
;;;###autoload
(defun url-recreate-url (urlobj)
"Recreate a URL string from the parsed URLOBJ."
(concat (url-type urlobj) ":" (if (url-host urlobj) "//" "")
(if (url-user urlobj)
(concat (url-user urlobj)
@ -111,7 +112,7 @@
(defun url-generic-parse-url (url)
"Return a vector of the parts of URL.
Format is:
\[proto username password hostname portnumber file reference attributes fullp\]"
\[TYPE USER PASSWORD HOST PORT FILE TARGET ATTRIBUTES FULL\]"
(cond
((null url)
(make-vector 9 nil))