changeset 54802:15a07e792605

Doc fixes.
author Stefan Monnier <monnier@iro.umontreal.ca>
date Mon, 12 Apr 2004 04:05:50 +0000
parents 8561817c6e37
children a78c94aa182d
files lisp/url/url-parse.el
diffstat 1 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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))