diff options
| author | Paul Eggert | 2016-05-01 18:14:22 -0700 |
|---|---|---|
| committer | Paul Eggert | 2016-05-01 18:14:22 -0700 |
| commit | 595195a10e5dd568bf249f5fb6778ae3d7037cd5 (patch) | |
| tree | e973d6ef419ca9c48563b03587184e58ee0df5ed | |
| parent | d6ec146ff9b66a1849932f90f3a5edade28d4579 (diff) | |
| parent | d8affa3dc5267c5da120ac09e14a81e0afed8fe8 (diff) | |
| download | emacs-595195a10e5dd568bf249f5fb6778ae3d7037cd5.tar.gz emacs-595195a10e5dd568bf249f5fb6778ae3d7037cd5.zip | |
Merge from origin/emacs-25
d8affa3 Use ‘T *restrict’ proto, not ‘T[restrict]’
d38d2a8 Fix documentation of 'url-retrieve-synchronously'
586b213 * lisp/url/url.el (url-retrieve-synchronously): Doc fix. (Bu...
# Conflicts:
# doc/misc/url.texi
# lisp/url/url.el
| -rw-r--r-- | doc/misc/url.texi | 7 | ||||
| -rw-r--r-- | src/fns.c | 7 |
2 files changed, 5 insertions, 9 deletions
diff --git a/doc/misc/url.texi b/doc/misc/url.texi index fe03234d111..097f626e718 100644 --- a/doc/misc/url.texi +++ b/doc/misc/url.texi | |||
| @@ -295,9 +295,10 @@ 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 | 297 | ||
| 298 | If @var{silent} is non-@code{nil}, don't do any messaging while | 298 | If the optional argument @var{silent} is non-@code{nil}, progress |
| 299 | retrieving. If @var{inhibit-cookies} is non-@code{nil}, refuse to | 299 | messages are suppressed. If the optional argument @var{no-cookies} is |
| 300 | store cookies. If @var{timeout} is passed, it should be a number that | 300 | non-@code{nil}, cookies are not stored or sent. If the optional |
| 301 | argument @var{timeout} is non-@code{nil}, it should be a number that | ||
| 301 | says (in seconds) how long to wait for a response before giving up. | 302 | says (in seconds) how long to wait for a response before giving up. |
| 302 | @end defun | 303 | @end defun |
| 303 | 304 | ||
| @@ -34,13 +34,8 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | |||
| 34 | #include "intervals.h" | 34 | #include "intervals.h" |
| 35 | #include "window.h" | 35 | #include "window.h" |
| 36 | 36 | ||
| 37 | #if __GNUC__ >= 4 | ||
| 38 | static void sort_vector_copy (Lisp_Object, ptrdiff_t, | 37 | static void sort_vector_copy (Lisp_Object, ptrdiff_t, |
| 39 | Lisp_Object [restrict], Lisp_Object [restrict]); | 38 | Lisp_Object *restrict, Lisp_Object *restrict); |
| 40 | #else | ||
| 41 | static void sort_vector_copy (Lisp_Object, ptrdiff_t, | ||
| 42 | Lisp_Object [], Lisp_Object []); | ||
| 43 | #endif | ||
| 44 | static bool internal_equal (Lisp_Object, Lisp_Object, int, bool, Lisp_Object); | 39 | static bool internal_equal (Lisp_Object, Lisp_Object, int, bool, Lisp_Object); |
| 45 | 40 | ||
| 46 | DEFUN ("identity", Fidentity, Sidentity, 1, 1, 0, | 41 | DEFUN ("identity", Fidentity, Sidentity, 1, 1, 0, |