diff options
| author | Richard M. Stallman | 2005-05-10 09:22:07 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2005-05-10 09:22:07 +0000 |
| commit | d101bf56d09580bb050a4ae1077a42973b992413 (patch) | |
| tree | 93739f747d1bd13d195109d208f819d052d57116 | |
| parent | 3fce19f17f44f464ce6714d6ddb645a529827c71 (diff) | |
| download | emacs-d101bf56d09580bb050a4ae1077a42973b992413.tar.gz emacs-d101bf56d09580bb050a4ae1077a42973b992413.zip | |
*** empty log message ***
| -rw-r--r-- | admin/FOR-RELEASE | 1 | ||||
| -rw-r--r-- | etc/TODO | 5 | ||||
| -rw-r--r-- | lisp/ChangeLog | 20 | ||||
| -rw-r--r-- | lispref/ChangeLog | 5 | ||||
| -rw-r--r-- | man/ChangeLog | 8 | ||||
| -rw-r--r-- | src/ChangeLog | 6 |
6 files changed, 43 insertions, 2 deletions
diff --git a/admin/FOR-RELEASE b/admin/FOR-RELEASE index 8af79e4df8b..7dfd9ee5480 100644 --- a/admin/FOR-RELEASE +++ b/admin/FOR-RELEASE | |||
| @@ -96,7 +96,6 @@ DIRECTORY STATUS IN CHARGE | |||
| 96 | lisp/international working Kenichi Handa | 96 | lisp/international working Kenichi Handa |
| 97 | lisp/languages working Kenichi Handa | 97 | lisp/languages working Kenichi Handa |
| 98 | 98 | ||
| 99 | |||
| 100 | ** Update AUTHORS. | 99 | ** Update AUTHORS. |
| 101 | 100 | ||
| 102 | ** Reorder NEWS entries. | 101 | ** Reorder NEWS entries. |
| @@ -9,6 +9,9 @@ to the FSF. | |||
| 9 | 9 | ||
| 10 | * Small but important fixes needed in existing features: | 10 | * Small but important fixes needed in existing features: |
| 11 | 11 | ||
| 12 | ** Convert everything that uses post-command-idle-hook | ||
| 13 | to use idle timers instead. | ||
| 14 | |||
| 12 | ** Fix the kill/yank treatment of invisible text. At the moment, | 15 | ** Fix the kill/yank treatment of invisible text. At the moment, |
| 13 | invisible text is placed in the kill-ring, so that the contents of | 16 | invisible text is placed in the kill-ring, so that the contents of |
| 14 | the ring may not correspond to the text as displayed to the user. It | 17 | the ring may not correspond to the text as displayed to the user. It |
| @@ -256,6 +259,8 @@ to the FSF. | |||
| 256 | ** Make monochrome images display using the foreground and background | 259 | ** Make monochrome images display using the foreground and background |
| 257 | colors of the applicable faces. | 260 | colors of the applicable faces. |
| 258 | 261 | ||
| 262 | ** Face remapping. | ||
| 263 | |||
| 259 | ** Add support for rendering antialiased text, probably using | 264 | ** Add support for rendering antialiased text, probably using |
| 260 | XRender/Freetype. | 265 | XRender/Freetype. |
| 261 | 266 | ||
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 8a42652db07..8687a5b6199 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,19 @@ | |||
| 1 | 2005-05-10 Richard M. Stallman <rms@gnu.org> | ||
| 2 | |||
| 3 | * progmodes/sh-script.el (sh-indent-for-do): Default to 0. | ||
| 4 | |||
| 5 | * progmodes/ada-mode.el (ada-adjust-case-skeleton): | ||
| 6 | Moved from ada-stmt.el. | ||
| 7 | (ada-mode): Add ada-adjust-case-skeleton to skeleton-end-hook. | ||
| 8 | |||
| 9 | * progmodes/ada-stmt.el (ada-adjust-case-skeleton): | ||
| 10 | Moved to ada-mode.el. | ||
| 11 | (ada-stmt-mode-hook): Deleted; do the work in ada-mode. | ||
| 12 | |||
| 13 | * cus-edit.el (custom-file): Call file-chase-links. | ||
| 14 | |||
| 15 | * files.el (read-directory-name): Fix previous change. | ||
| 16 | |||
| 1 | 2005-05-10 Lute Kamstra <lute@gnu.org> | 17 | 2005-05-10 Lute Kamstra <lute@gnu.org> |
| 2 | 18 | ||
| 3 | * font-lock.el (font-lock-keywords-alist) | 19 | * font-lock.el (font-lock-keywords-alist) |
| @@ -273,6 +289,8 @@ | |||
| 273 | 289 | ||
| 274 | 2005-05-04 Richard M. Stallman <rms@gnu.org> | 290 | 2005-05-04 Richard M. Stallman <rms@gnu.org> |
| 275 | 291 | ||
| 292 | * help.el (describe-key): No error when UNTRANSLATED is nil. | ||
| 293 | |||
| 276 | * simple.el (line-move-1): Fix previous change to signal errors | 294 | * simple.el (line-move-1): Fix previous change to signal errors |
| 277 | appropriately. | 295 | appropriately. |
| 278 | 296 | ||
| @@ -4920,7 +4938,7 @@ | |||
| 4920 | 4938 | ||
| 4921 | * vc-svn.el (vc-svn-diff): Stay local if possible. | 4939 | * vc-svn.el (vc-svn-diff): Stay local if possible. |
| 4922 | 4940 | ||
| 4923 | 2005-01-02 Stefan <monnier@iro.umontreal.ca> | 4941 | 2005-01-02 Stefan Monnier <monnier@iro.umontreal.ca> |
| 4924 | 4942 | ||
| 4925 | * vc-arch.el (vc-arch-workfile-version): Handle the empty-branch case. | 4943 | * vc-arch.el (vc-arch-workfile-version): Handle the empty-branch case. |
| 4926 | 4944 | ||
diff --git a/lispref/ChangeLog b/lispref/ChangeLog index aa90a4f0e73..487e92490ef 100644 --- a/lispref/ChangeLog +++ b/lispref/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2005-05-10 Richard M. Stallman <rms@gnu.org> | ||
| 2 | |||
| 3 | * keymaps.texi (Extended Menu Items): Menu item filter functions | ||
| 4 | can be called at any time. | ||
| 5 | |||
| 1 | 2005-05-08 Luc Teirlinck <teirllm@auburn.edu> | 6 | 2005-05-08 Luc Teirlinck <teirllm@auburn.edu> |
| 2 | 7 | ||
| 3 | * variables.texi (File Local Variables): `(hack-local-variables t)' | 8 | * variables.texi (File Local Variables): `(hack-local-variables t)' |
diff --git a/man/ChangeLog b/man/ChangeLog index 547eb19a43c..5244b52de73 100644 --- a/man/ChangeLog +++ b/man/ChangeLog | |||
| @@ -1,3 +1,11 @@ | |||
| 1 | 2005-05-10 Richard M. Stallman <rms@gnu.org> | ||
| 2 | |||
| 3 | * building.texi (Compilation): Clarify recompile's directory choice. | ||
| 4 | |||
| 5 | * frames.texi (Tooltips): Cleanups. | ||
| 6 | |||
| 7 | * basic.texi (Arguments): Fix punctuation. | ||
| 8 | |||
| 1 | 2005-05-09 Luc Teirlinck <teirllm@auburn.edu> | 9 | 2005-05-09 Luc Teirlinck <teirllm@auburn.edu> |
| 2 | 10 | ||
| 3 | * screen.texi (Menu Bar): The up and down (not left and right) | 11 | * screen.texi (Menu Bar): The up and down (not left and right) |
diff --git a/src/ChangeLog b/src/ChangeLog index a8e248a1718..c20072eb80c 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,9 @@ | |||
| 1 | 2005-05-10 Richard M. Stallman <rms@gnu.org> | ||
| 2 | |||
| 3 | * xterm.c (noinclude): Add #undef. | ||
| 4 | |||
| 5 | * image.c, xfns.c, xmenu.c: Don't include signal.h. | ||
| 6 | |||
| 1 | 2005-05-09 Juanma Barranquero <lekktu@gmail.com> | 7 | 2005-05-09 Juanma Barranquero <lekktu@gmail.com> |
| 2 | 8 | ||
| 3 | * fileio.c (Fexpand_file_name, Frename_file, Fadd_name_to_file) | 9 | * fileio.c (Fexpand_file_name, Frename_file, Fadd_name_to_file) |