aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--etc/NEWS5
-rw-r--r--lisp/ChangeLog12
-rw-r--r--src/ChangeLog18
3 files changed, 35 insertions, 0 deletions
diff --git a/etc/NEWS b/etc/NEWS
index 104a24fa0ef..13e86b51acf 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -1178,6 +1178,11 @@ timing measurements of code (including the garbage collection component).
1178 1178
1179* Lisp Changes in Emacs 21.4 1179* Lisp Changes in Emacs 21.4
1180 1180
1181** The function `number-sequence' returns a list of equally-separated
1182numbers. For instance, (number-sequence 4 9) returns (4 5 6 7 8 9).
1183By default, the separation is 1, but you can specify a different separation
1184as the third argument. (number-sequence 1.5 6 2) returns (1.5 3.5 5.5).
1185
1181** `set-fontset-font', `fontset-info', `fontset-font' now operate on 1186** `set-fontset-font', `fontset-info', `fontset-font' now operate on
1182the default fontset if the argument NAME is nil.. 1187the default fontset if the argument NAME is nil..
1183 1188
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 0573868e000..c0df194b86e 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,15 @@
12003-04-06 Richard M. Stallman <rms@gnu.org>
2
3 * calendar/cal-menu.el (cal-menu-update): Use easy-menu-create-menu
4 rather than easy-menu-change.
5
6 * dired.el (dired-view-file): Let viewer program run asynchronously.
7
82003-04-06 Ben North <ben@redfrontdoor.org> (tiny change)
9
10 * emacs-lisp/lisp-mode.el (last-sexp-toggle-display):
11 Correct the starting point for previous-single-property-change.
12
12003-04-06 Masatake YAMATO <jet@gyve.org> 132003-04-06 Masatake YAMATO <jet@gyve.org>
2 14
3 * progmodes/etags.el (tag-find-file-of-tag): Renamed from 15 * progmodes/etags.el (tag-find-file-of-tag): Renamed from
diff --git a/src/ChangeLog b/src/ChangeLog
index d89bf8533da..73b633f380e 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,21 @@
12003-04-06 Richard M. Stallman <rms@gnu.org>
2
3 * xselect.c (x_handle_selection_request): Move UNGCPRO to very end.
4
5 * marker.c (verify_bytepos): New function.
6
7 * intervals.c (set_intervals_multibyte_1): When becoming
8 multibyte, adjust right and left child sizes to a whole set of
9 characters. If an interval gets zero total-length, delete it.
10 If an interval consists of just its children, delete one of them.
11
12 * intervals.h (CHECK_TOTAL_LENGTH): New macro.
13 * intervals.c: Add many calls to CHECK_TOTAL_LENGTH.
14
15 * alloc.c: (VALIDATE_LISP_STORAGE): Macro deleted.
16 All calls deleted.
17 (lisp_malloc): Do the work here directly.
18
12003-04-06 Gareth Jones <emacs@referential.org.uk> (tiny change) 192003-04-06 Gareth Jones <emacs@referential.org.uk> (tiny change)
2 20
3 * fns.c (Flength): Return SUB_CHAR_TABLE_ORDINARY_SLOTS for sub 21 * fns.c (Flength): Return SUB_CHAR_TABLE_ORDINARY_SLOTS for sub