aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2004-04-12 04:05:50 +0000
committerStefan Monnier2004-04-12 04:05:50 +0000
commit61bbdf64e85f2713eb145a639ddcc57aea28e08a (patch)
tree22d18c1795de1dd3d250292de20aa7ccc8e5966f
parent30bfc9cebf0198822cd11c010b8371c528a063c8 (diff)
downloademacs-61bbdf64e85f2713eb145a639ddcc57aea28e08a.tar.gz
emacs-61bbdf64e85f2713eb145a639ddcc57aea28e08a.zip
Doc fixes.
-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 23837990b66..36faee93f8d 100644
--- a/lisp/url/url-parse.el
+++ b/lisp/url/url-parse.el
@@ -84,6 +84,7 @@
84 84
85;;;###autoload 85;;;###autoload
86(defun url-recreate-url (urlobj) 86(defun url-recreate-url (urlobj)
87 "Recreate a URL string from the parsed URLOBJ."
87 (concat (url-type urlobj) ":" (if (url-host urlobj) "//" "") 88 (concat (url-type urlobj) ":" (if (url-host urlobj) "//" "")
88 (if (url-user urlobj) 89 (if (url-user urlobj)
89 (concat (url-user urlobj) 90 (concat (url-user urlobj)
@@ -111,7 +112,7 @@
111(defun url-generic-parse-url (url) 112(defun url-generic-parse-url (url)
112 "Return a vector of the parts of URL. 113 "Return a vector of the parts of URL.
113Format is: 114Format is:
114\[proto username password hostname portnumber file reference attributes fullp\]" 115\[TYPE USER PASSWORD HOST PORT FILE TARGET ATTRIBUTES FULL\]"
115 (cond 116 (cond
116 ((null url) 117 ((null url)
117 (make-vector 9 nil)) 118 (make-vector 9 nil))