diff options
| author | Eli Zaretskii | 2016-05-01 18:28:48 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2016-05-01 18:28:48 +0300 |
| commit | d38d2a845a8e44443e8d995c0ba79211e6934400 (patch) | |
| tree | b5a4e87cd2ac652c70c028c2076f05282b49c1cb | |
| parent | 586b21393fb1073a91533c25339c4560b0d9e02e (diff) | |
| download | emacs-d38d2a845a8e44443e8d995c0ba79211e6934400.tar.gz emacs-d38d2a845a8e44443e8d995c0ba79211e6934400.zip | |
Fix documentation of 'url-retrieve-synchronously'
* doc/misc/url.texi (Retrieving URLs): Update argument list of
'url-retrieve-synchronously'. (Bug#23411)
| -rw-r--r-- | doc/misc/url.texi | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/doc/misc/url.texi b/doc/misc/url.texi index c46859968a2..a3c6b88ea05 100644 --- a/doc/misc/url.texi +++ b/doc/misc/url.texi | |||
| @@ -289,11 +289,15 @@ string or a parsed URL structure. If it is a string, that string is | |||
| 289 | passed through @code{url-encode-url} before using it, to ensure that | 289 | passed through @code{url-encode-url} before using it, to ensure that |
| 290 | it is properly URI-encoded (@pxref{URI Encoding}). | 290 | it is properly URI-encoded (@pxref{URI Encoding}). |
| 291 | 291 | ||
| 292 | @defun url-retrieve-synchronously url | 292 | @defun url-retrieve-synchronously url silent no-cookies |
| 293 | This function synchronously retrieves the data specified by @var{url}, | 293 | This function synchronously retrieves the data specified by @var{url}, |
| 294 | and returns a buffer containing the data. The return value is | 294 | and returns a buffer containing the data. The return value is |
| 295 | @code{nil} if there is no data associated with the URL (as is the case | 295 | @code{nil} if there is no data associated with the URL (as is the case |
| 296 | for @code{dired}, @code{info}, and @code{mailto} URLs). | 296 | for @code{dired}, @code{info}, and @code{mailto} URLs). |
| 297 | |||
| 298 | If the optional argument @var{silent} is non-@code{nil}, progress | ||
| 299 | messages are suppressed. If the optional argument @var{no-cookies} is | ||
| 300 | non-@code{nil}, cookies are not stored or sent. | ||
| 297 | @end defun | 301 | @end defun |
| 298 | 302 | ||
| 299 | @defun url-retrieve url callback &optional cbargs silent no-cookies | 303 | @defun url-retrieve url callback &optional cbargs silent no-cookies |