# HG changeset patch # User Richard M. Stallman # Date 1049661729 0 # Node ID b473e7c8236687c3533a4b6a974dd3637e826c06 # Parent d89a8e99c73b1af41753758a213bc11e1c847ded *** empty log message *** diff -r d89a8e99c73b -r b473e7c82366 etc/NEWS --- a/etc/NEWS Sun Apr 06 20:35:06 2003 +0000 +++ b/etc/NEWS Sun Apr 06 20:42:09 2003 +0000 @@ -1178,6 +1178,11 @@ * Lisp Changes in Emacs 21.4 +** The function `number-sequence' returns a list of equally-separated +numbers. For instance, (number-sequence 4 9) returns (4 5 6 7 8 9). +By default, the separation is 1, but you can specify a different separation +as the third argument. (number-sequence 1.5 6 2) returns (1.5 3.5 5.5). + ** `set-fontset-font', `fontset-info', `fontset-font' now operate on the default fontset if the argument NAME is nil.. diff -r d89a8e99c73b -r b473e7c82366 lisp/ChangeLog --- a/lisp/ChangeLog Sun Apr 06 20:35:06 2003 +0000 +++ b/lisp/ChangeLog Sun Apr 06 20:42:09 2003 +0000 @@ -1,3 +1,15 @@ +2003-04-06 Richard M. Stallman + + * calendar/cal-menu.el (cal-menu-update): Use easy-menu-create-menu + rather than easy-menu-change. + + * dired.el (dired-view-file): Let viewer program run asynchronously. + +2003-04-06 Ben North (tiny change) + + * emacs-lisp/lisp-mode.el (last-sexp-toggle-display): + Correct the starting point for previous-single-property-change. + 2003-04-06 Masatake YAMATO * progmodes/etags.el (tag-find-file-of-tag): Renamed from diff -r d89a8e99c73b -r b473e7c82366 src/ChangeLog --- a/src/ChangeLog Sun Apr 06 20:35:06 2003 +0000 +++ b/src/ChangeLog Sun Apr 06 20:42:09 2003 +0000 @@ -1,3 +1,21 @@ +2003-04-06 Richard M. Stallman + + * xselect.c (x_handle_selection_request): Move UNGCPRO to very end. + + * marker.c (verify_bytepos): New function. + + * intervals.c (set_intervals_multibyte_1): When becoming + multibyte, adjust right and left child sizes to a whole set of + characters. If an interval gets zero total-length, delete it. + If an interval consists of just its children, delete one of them. + + * intervals.h (CHECK_TOTAL_LENGTH): New macro. + * intervals.c: Add many calls to CHECK_TOTAL_LENGTH. + + * alloc.c: (VALIDATE_LISP_STORAGE): Macro deleted. + All calls deleted. + (lisp_malloc): Do the work here directly. + 2003-04-06 Gareth Jones (tiny change) * fns.c (Flength): Return SUB_CHAR_TABLE_ORDINARY_SLOTS for sub