]> git.eshelyaron.com Git - emacs.git/commitdiff
Doc fixes.
authorStefan Monnier <monnier@iro.umontreal.ca>
Mon, 12 Apr 2004 04:05:50 +0000 (04:05 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Mon, 12 Apr 2004 04:05:50 +0000 (04:05 +0000)
lisp/url/url-parse.el

index 23837990b66020dbddc631327e1f355c747ce7c5..36faee93f8d39b0984a8db9618ee000eab5e448b 100644 (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)
 (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))