# HG changeset patch # User Richard M. Stallman # Date 1050469819 0 # Node ID 6ee7467b8fd721f530a732d050267cb827a213f1 # Parent 0fbbfbc3ddfeabb158ce55a5531259ef821e9635 *** empty log message *** diff -r 0fbbfbc3ddfe -r 6ee7467b8fd7 etc/NEWS --- a/etc/NEWS Wed Apr 16 05:09:36 2003 +0000 +++ b/etc/NEWS Wed Apr 16 05:10:19 2003 +0000 @@ -1184,7 +1184,12 @@ * Lisp Changes in Emacs 21.4 -** `sit-for' understands XEmacs args (SECONDS &optional NODISP). +** `minor-mode-list' now holds a list of minor mode commands. + +** The new command `modify-all-frames-parameters' modifies parameters +for all (existing and future) frames. + +** `sit-for' can now be called with args (SECONDS &optional NODISP). ** New standard font-lock face `font-lock-preprocessor-face'. @@ -1864,15 +1869,10 @@ ** A hex escape in a string forces the string to be multibyte. An octal escape makes it unibyte. -** The code that forced point to move out of images and composition -has been generalized to apply to overlays as well and to invisible text. -This makes it generally unnecessary to mark invisible text as intangible, -which is particularly good due to the fact that the intangible property -can often have unexpected side-effects because the property applies -to everything (including `goto-char', ...) whereas this new code is -only run after post-command-hook and thus does not care about intermediate -states. - +** At the end of a command, point moves out from within invisible +text, in the same way it moves out from within text covered by an +image or composition property. + ** Only one of the beginning or end of an invisible, intangible region is considered an acceptable value for point; which one is determined by examining how the invisible/intangible properties are inherited when new diff -r 0fbbfbc3ddfe -r 6ee7467b8fd7 lisp/ChangeLog --- a/lisp/ChangeLog Wed Apr 16 05:09:36 2003 +0000 +++ b/lisp/ChangeLog Wed Apr 16 05:10:19 2003 +0000 @@ -1,3 +1,8 @@ +2003-04-16 Richard M. Stallman + + * man.el (Man-follow-manual-reference): Don't require match + when calling completing-read. + 2003-04-15 Glenn Morris * progmodes/fortran.el: Whitespace changes, some re-ordering of diff -r 0fbbfbc3ddfe -r 6ee7467b8fd7 lispref/ChangeLog --- a/lispref/ChangeLog Wed Apr 16 05:09:36 2003 +0000 +++ b/lispref/ChangeLog Wed Apr 16 05:10:19 2003 +0000 @@ -1,3 +1,7 @@ +2003-04-16 Richard M. Stallman + + * minibuf.texi (Minibuffer Misc): Document fn minibuffer-message. + 2003-04-08 Richard M. Stallman * files.texi (Kinds of Files): Correct return value of file-symlink-p. diff -r 0fbbfbc3ddfe -r 6ee7467b8fd7 man/ChangeLog --- a/man/ChangeLog Wed Apr 16 05:09:36 2003 +0000 +++ b/man/ChangeLog Wed Apr 16 05:10:19 2003 +0000 @@ -1,3 +1,7 @@ +2003-04-16 Richard M. Stallman + + * search.texi (Regexps): Ref to Lisp manual for more regexp features. + 2003-04-08 Michael Albinus * tramp.texi: Version 2.0.33 released. diff -r 0fbbfbc3ddfe -r 6ee7467b8fd7 src/ChangeLog --- a/src/ChangeLog Wed Apr 16 05:09:36 2003 +0000 +++ b/src/ChangeLog Wed Apr 16 05:10:19 2003 +0000 @@ -1,3 +1,10 @@ +2003-04-16 Richard M. Stallman + + * xdisp.c (try_window, try_window_reusing_current_matrix): + When at end of window, set window_end_pos to Z-ZV. + + * buffer.c (Foverlay_recenter): Doc fix. + 2003-04-14 Andrew Choi * macterm.c (mac_check_for_quit_char): Don't check more often than