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 /src | |
| 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
Diffstat (limited to 'src')
| -rw-r--r-- | src/fns.c | 7 |
1 files changed, 1 insertions, 6 deletions
| @@ -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, |