# HG changeset patch # User Stefan Monnier # Date 1081742750 0 # Node ID 15a07e79260501ca4eaba6f1dea6c76bff5db84d # Parent 8561817c6e37582ba3a08e6e11dea9c090fd5dbc Doc fixes. diff -r 8561817c6e37 -r 15a07e792605 lisp/url/url-parse.el --- a/lisp/url/url-parse.el Mon Apr 12 04:05:43 2004 +0000 +++ b/lisp/url/url-parse.el Mon Apr 12 04:05:50 2004 +0000 @@ -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))