aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorStefan Monnier <[email protected]>2004-04-12 04:05:50 +0000
committerStefan Monnier <[email protected]>2004-04-12 04:05:50 +0000
commit61bbdf64e85f2713eb145a639ddcc57aea28e08a (patch)
tree22d18c1795de1dd3d250292de20aa7ccc8e5966f /lisp
parent30bfc9cebf0198822cd11c010b8371c528a063c8 (diff)
Doc fixes.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/url/url-parse.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/url/url-parse.el b/lisp/url/url-parse.el
index 23837990b6..36faee93f8 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))