From: Stefan Monnier Date: Mon, 12 Apr 2004 04:05:50 +0000 (+0000) Subject: Doc fixes. X-Git-Tag: ttn-vms-21-2-B4~6893 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=61bbdf64e85f2713eb145a639ddcc57aea28e08a;p=emacs.git Doc fixes. --- diff --git a/lisp/url/url-parse.el b/lisp/url/url-parse.el index 23837990b66..36faee93f8d 100644 --- a/lisp/url/url-parse.el +++ b/lisp/url/url-parse.el @@ -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))