diff options
| author | Richard M. Stallman | 2003-04-16 05:10:19 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2003-04-16 05:10:19 +0000 |
| commit | 5ceea398192dbc0893f2d62a2e631235df8a3fe9 (patch) | |
| tree | 0f7f9bc636b25f03b81d9cb52c780b3775e222fc | |
| parent | 86bf3faa7aaeb59dc86d3a2640d7aaaa60a01246 (diff) | |
| download | emacs-5ceea398192dbc0893f2d62a2e631235df8a3fe9.tar.gz emacs-5ceea398192dbc0893f2d62a2e631235df8a3fe9.zip | |
*** empty log message ***
| -rw-r--r-- | etc/NEWS | 20 | ||||
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lispref/ChangeLog | 4 | ||||
| -rw-r--r-- | man/ChangeLog | 4 | ||||
| -rw-r--r-- | src/ChangeLog | 7 |
5 files changed, 30 insertions, 10 deletions
| @@ -1184,7 +1184,12 @@ timing measurements of code (including the garbage collection component). | |||
| 1184 | 1184 | ||
| 1185 | * Lisp Changes in Emacs 21.4 | 1185 | * Lisp Changes in Emacs 21.4 |
| 1186 | 1186 | ||
| 1187 | ** `sit-for' understands XEmacs args (SECONDS &optional NODISP). | 1187 | ** `minor-mode-list' now holds a list of minor mode commands. |
| 1188 | |||
| 1189 | ** The new command `modify-all-frames-parameters' modifies parameters | ||
| 1190 | for all (existing and future) frames. | ||
| 1191 | |||
| 1192 | ** `sit-for' can now be called with args (SECONDS &optional NODISP). | ||
| 1188 | 1193 | ||
| 1189 | ** New standard font-lock face `font-lock-preprocessor-face'. | 1194 | ** New standard font-lock face `font-lock-preprocessor-face'. |
| 1190 | 1195 | ||
| @@ -1864,15 +1869,10 @@ over minor mode keymaps. | |||
| 1864 | ** A hex escape in a string forces the string to be multibyte. | 1869 | ** A hex escape in a string forces the string to be multibyte. |
| 1865 | An octal escape makes it unibyte. | 1870 | An octal escape makes it unibyte. |
| 1866 | 1871 | ||
| 1867 | ** The code that forced point to move out of images and composition | 1872 | ** At the end of a command, point moves out from within invisible |
| 1868 | has been generalized to apply to overlays as well and to invisible text. | 1873 | text, in the same way it moves out from within text covered by an |
| 1869 | This makes it generally unnecessary to mark invisible text as intangible, | 1874 | image or composition property. |
| 1870 | which is particularly good due to the fact that the intangible property | 1875 | |
| 1871 | can often have unexpected side-effects because the property applies | ||
| 1872 | to everything (including `goto-char', ...) whereas this new code is | ||
| 1873 | only run after post-command-hook and thus does not care about intermediate | ||
| 1874 | states. | ||
| 1875 | |||
| 1876 | ** Only one of the beginning or end of an invisible, intangible region is | 1876 | ** Only one of the beginning or end of an invisible, intangible region is |
| 1877 | considered an acceptable value for point; which one is determined by | 1877 | considered an acceptable value for point; which one is determined by |
| 1878 | examining how the invisible/intangible properties are inherited when new | 1878 | examining how the invisible/intangible properties are inherited when new |
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 3fabfecb214..3e5bb84a0cf 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2003-04-16 Richard M. Stallman <rms@gnu.org> | ||
| 2 | |||
| 3 | * man.el (Man-follow-manual-reference): Don't require match | ||
| 4 | when calling completing-read. | ||
| 5 | |||
| 1 | 2003-04-15 Glenn Morris <gmorris@ast.cam.ac.uk> | 6 | 2003-04-15 Glenn Morris <gmorris@ast.cam.ac.uk> |
| 2 | 7 | ||
| 3 | * progmodes/fortran.el: Whitespace changes, some re-ordering of | 8 | * progmodes/fortran.el: Whitespace changes, some re-ordering of |
diff --git a/lispref/ChangeLog b/lispref/ChangeLog index f7757d1eee7..819c36536ed 100644 --- a/lispref/ChangeLog +++ b/lispref/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2003-04-16 Richard M. Stallman <rms@gnu.org> | ||
| 2 | |||
| 3 | * minibuf.texi (Minibuffer Misc): Document fn minibuffer-message. | ||
| 4 | |||
| 1 | 2003-04-08 Richard M. Stallman <rms@gnu.org> | 5 | 2003-04-08 Richard M. Stallman <rms@gnu.org> |
| 2 | 6 | ||
| 3 | * files.texi (Kinds of Files): Correct return value of file-symlink-p. | 7 | * files.texi (Kinds of Files): Correct return value of file-symlink-p. |
diff --git a/man/ChangeLog b/man/ChangeLog index 8b997dbde79..bcf35636f63 100644 --- a/man/ChangeLog +++ b/man/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2003-04-16 Richard M. Stallman <rms@gnu.org> | ||
| 2 | |||
| 3 | * search.texi (Regexps): Ref to Lisp manual for more regexp features. | ||
| 4 | |||
| 1 | 2003-04-08 Michael Albinus <Michael.Albinus@alcatel.de> | 5 | 2003-04-08 Michael Albinus <Michael.Albinus@alcatel.de> |
| 2 | 6 | ||
| 3 | * tramp.texi: Version 2.0.33 released. | 7 | * tramp.texi: Version 2.0.33 released. |
diff --git a/src/ChangeLog b/src/ChangeLog index 630b65920c8..8ddc23fec81 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,10 @@ | |||
| 1 | 2003-04-16 Richard M. Stallman <rms@gnu.org> | ||
| 2 | |||
| 3 | * xdisp.c (try_window, try_window_reusing_current_matrix): | ||
| 4 | When at end of window, set window_end_pos to Z-ZV. | ||
| 5 | |||
| 6 | * buffer.c (Foverlay_recenter): Doc fix. | ||
| 7 | |||
| 1 | 2003-04-14 Andrew Choi <akochoi@shaw.ca> | 8 | 2003-04-14 Andrew Choi <akochoi@shaw.ca> |
| 2 | 9 | ||
| 3 | * macterm.c (mac_check_for_quit_char): Don't check more often than | 10 | * macterm.c (mac_check_for_quit_char): Don't check more often than |