diff options
| author | Paul Eggert | 2013-08-01 23:24:02 +0100 |
|---|---|---|
| committer | Paul Eggert | 2013-08-01 23:24:02 +0100 |
| commit | 6318cde023c4ffff777dde20768046e057d85448 (patch) | |
| tree | 182f5f5fe9d02f41a31804e543d2a2944400ca8d /src | |
| parent | 5f648ab4b0a3f55c0e85253fb0d6a6f8b8326c12 (diff) | |
| download | emacs-6318cde023c4ffff777dde20768046e057d85448.tar.gz emacs-6318cde023c4ffff777dde20768046e057d85448.zip | |
* fileio.c, fns.c (merge): Move extern decl from here ...
* lisp.h (merge): ... to here.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 5 | ||||
| -rw-r--r-- | src/fileio.c | 2 | ||||
| -rw-r--r-- | src/fns.c | 2 | ||||
| -rw-r--r-- | src/lisp.h | 1 |
4 files changed, 6 insertions, 4 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index abc54196eb0..c8626802af6 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2013-08-01 Paul Eggert <eggert@cs.ucla.edu> | ||
| 2 | |||
| 3 | * fileio.c, fns.c (merge): Move extern decl from here ... | ||
| 4 | * lisp.h (merge): ... to here. | ||
| 5 | |||
| 1 | 2013-08-01 Dmitry Antipov <dmantipov@yandex.ru> | 6 | 2013-08-01 Dmitry Antipov <dmantipov@yandex.ru> |
| 2 | 7 | ||
| 3 | Fix last font-related change. | 8 | Fix last font-related change. |
diff --git a/src/fileio.c b/src/fileio.c index c47b3533145..59e84053773 100644 --- a/src/fileio.c +++ b/src/fileio.c | |||
| @@ -5096,8 +5096,6 @@ This calls `write-region-annotate-functions' at the start, and | |||
| 5096 | return Qnil; | 5096 | return Qnil; |
| 5097 | } | 5097 | } |
| 5098 | 5098 | ||
| 5099 | Lisp_Object merge (Lisp_Object, Lisp_Object, Lisp_Object); | ||
| 5100 | |||
| 5101 | DEFUN ("car-less-than-car", Fcar_less_than_car, Scar_less_than_car, 2, 2, 0, | 5099 | DEFUN ("car-less-than-car", Fcar_less_than_car, Scar_less_than_car, 2, 2, 0, |
| 5102 | doc: /* Return t if (car A) is numerically less than (car B). */) | 5100 | doc: /* Return t if (car A) is numerically less than (car B). */) |
| 5103 | (Lisp_Object a, Lisp_Object b) | 5101 | (Lisp_Object a, Lisp_Object b) |
| @@ -1738,8 +1738,6 @@ See also the function `nreverse', which is used more often. */) | |||
| 1738 | return new; | 1738 | return new; |
| 1739 | } | 1739 | } |
| 1740 | 1740 | ||
| 1741 | Lisp_Object merge (Lisp_Object org_l1, Lisp_Object org_l2, Lisp_Object pred); | ||
| 1742 | |||
| 1743 | DEFUN ("sort", Fsort, Ssort, 2, 2, 0, | 1741 | DEFUN ("sort", Fsort, Ssort, 2, 2, 0, |
| 1744 | doc: /* Sort LIST, stably, comparing elements using PREDICATE. | 1742 | doc: /* Sort LIST, stably, comparing elements using PREDICATE. |
| 1745 | Returns the sorted list. LIST is modified by side effects. | 1743 | Returns the sorted list. LIST is modified by side effects. |
diff --git a/src/lisp.h b/src/lisp.h index 254ead231b9..5daddb7d335 100644 --- a/src/lisp.h +++ b/src/lisp.h | |||
| @@ -3302,6 +3302,7 @@ extern struct hash_table_test hashtest_eql, hashtest_equal; | |||
| 3302 | 3302 | ||
| 3303 | extern Lisp_Object substring_both (Lisp_Object, ptrdiff_t, ptrdiff_t, | 3303 | extern Lisp_Object substring_both (Lisp_Object, ptrdiff_t, ptrdiff_t, |
| 3304 | ptrdiff_t, ptrdiff_t); | 3304 | ptrdiff_t, ptrdiff_t); |
| 3305 | extern Lisp_Object merge (Lisp_Object, Lisp_Object, Lisp_Object); | ||
| 3305 | extern Lisp_Object do_yes_or_no_p (Lisp_Object); | 3306 | extern Lisp_Object do_yes_or_no_p (Lisp_Object); |
| 3306 | extern Lisp_Object concat2 (Lisp_Object, Lisp_Object); | 3307 | extern Lisp_Object concat2 (Lisp_Object, Lisp_Object); |
| 3307 | extern Lisp_Object concat3 (Lisp_Object, Lisp_Object, Lisp_Object); | 3308 | extern Lisp_Object concat3 (Lisp_Object, Lisp_Object, Lisp_Object); |