diff options
author | Chong Yidong <cyd@stupidchicken.com> | 2006-10-27 14:46:59 +0000 |
---|---|---|
committer | Chong Yidong <cyd@stupidchicken.com> | 2006-10-27 14:46:59 +0000 |
commit | 1b244f6177a8003bad8b9b297ae90e7e64488414 (patch) | |
tree | a379d5a9e3b0cc58db41630ccdd8d855069534ac /lisp/url/url.el | |
parent | 5695d1dd75e567a73904123a175244ff1b9c1ff1 (diff) | |
download | emacs-1b244f6177a8003bad8b9b297ae90e7e64488414.tar.gz |
* url.el (url-retrieve): Minor doc clarification.
Diffstat (limited to 'lisp/url/url.el')
-rw-r--r-- | lisp/url/url.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/url/url.el b/lisp/url/url.el index f20c0a6d48e..6e4dfa089e7 100644 --- a/lisp/url/url.el +++ b/lisp/url/url.el @@ -128,10 +128,10 @@ URL is either a string or a parsed URL. CALLBACK is called when the object has been completely retrieved, with the current buffer containing the object, and any MIME headers associated -with it. It is called as (apply CALLBACK STATUS CBARGS), where STATUS -is a list with an even number of elements representing what happened -during the request, with most recent events first. Each pair is one -of: +with it. It is called as (apply CALLBACK STATUS CBARGS). +STATUS is a list with an even number of elements representing +what happened during the request, with most recent events first, +or an empty list if no events have occurred. Each pair is one of: \(:redirect REDIRECTED-TO) - the request was redirected to this URL \(:error (ERROR-SYMBOL . DATA)) - an error occurred. The error can be |