diff options
| author | Richard M. Stallman | 2006-07-09 02:08:14 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2006-07-09 02:08:14 +0000 |
| commit | 3aa7c28e8e92d19ca12856bbe1f57b751ed5b1dd (patch) | |
| tree | e61decf8559677ce3274a56914d194efa7b1b41f | |
| parent | 34079653ff9efb5e148caed66f92e392fbd8b201 (diff) | |
| download | emacs-3aa7c28e8e92d19ca12856bbe1f57b751ed5b1dd.tar.gz emacs-3aa7c28e8e92d19ca12856bbe1f57b751ed5b1dd.zip | |
*** empty log message ***
| -rw-r--r-- | ChangeLog | 6 | ||||
| -rw-r--r-- | admin/FOR-RELEASE | 2 | ||||
| -rw-r--r-- | etc/NEWS | 4 | ||||
| -rw-r--r-- | etc/TODO | 2 | ||||
| -rw-r--r-- | lisp/ChangeLog | 11 | ||||
| -rw-r--r-- | lispref/ChangeLog | 8 |
6 files changed, 30 insertions, 3 deletions
| @@ -1,3 +1,7 @@ | |||
| 1 | 2006-07-08 Richard Stallman <rms@gnu.org> | ||
| 2 | |||
| 3 | * INSTALL (DETAILED BUILDING AND INSTALLATION): Minor corrections. | ||
| 4 | |||
| 1 | 2006-07-09 Kim F. Storm <storm@cua.dk> | 5 | 2006-07-09 Kim F. Storm <storm@cua.dk> |
| 2 | 6 | ||
| 3 | * CONTRIBUTE: Use outline format. | 7 | * CONTRIBUTE: Use outline format. |
| @@ -7,7 +11,7 @@ | |||
| 7 | 11 | ||
| 8 | * configure: Regenerated. | 12 | * configure: Regenerated. |
| 9 | 13 | ||
| 10 | * configure.in (PKG_CHECK_MODUILES): Redirect stderr of pkg-config | 14 | * configure.in (PKG_CHECK_MODULES): Redirect stderr of pkg-config |
| 11 | to /dev/null, since we don't need the error message, just the | 15 | to /dev/null, since we don't need the error message, just the |
| 12 | exit status. | 16 | exit status. |
| 13 | 17 | ||
diff --git a/admin/FOR-RELEASE b/admin/FOR-RELEASE index 4ba4204c05b..95584c62965 100644 --- a/admin/FOR-RELEASE +++ b/admin/FOR-RELEASE | |||
| @@ -64,8 +64,6 @@ It seems that to fix this, w32 server sockets must use WSAAsyncSelect | |||
| 64 | 64 | ||
| 65 | * DOCUMENTATION | 65 | * DOCUMENTATION |
| 66 | 66 | ||
| 67 | ** Delete all @tindex commands from the Emacs Lisp Manual. | ||
| 68 | |||
| 69 | ** Check the Emacs Lisp manual. | 67 | ** Check the Emacs Lisp manual. |
| 70 | 68 | ||
| 71 | Each manual section should be checked for factual correctness | 69 | Each manual section should be checked for factual correctness |
| @@ -451,6 +451,8 @@ C-h e displays the *Messages* buffer. | |||
| 451 | 451 | ||
| 452 | C-h d runs apropos-documentation. | 452 | C-h d runs apropos-documentation. |
| 453 | 453 | ||
| 454 | C-h r visits the Emacs Manual in Info. | ||
| 455 | |||
| 454 | C-h followed by a control character is used for displaying files | 456 | C-h followed by a control character is used for displaying files |
| 455 | that do not change: | 457 | that do not change: |
| 456 | 458 | ||
| @@ -3667,6 +3669,8 @@ deleting the part of subprocess output that matches the input. | |||
| 3667 | ** The variable `memory-full' now remains t until | 3669 | ** The variable `memory-full' now remains t until |
| 3668 | there is no longer a shortage of memory. | 3670 | there is no longer a shortage of memory. |
| 3669 | 3671 | ||
| 3672 | ** When Emacs receives a USR1 or USR2 signal, this generates | ||
| 3673 | an input event: usr1-signal or usr2-signal. | ||
| 3670 | 3674 | ||
| 3671 | * Lisp Changes in Emacs 22.1 | 3675 | * Lisp Changes in Emacs 22.1 |
| 3672 | 3676 | ||
| @@ -90,6 +90,8 @@ current buffer. | |||
| 90 | list fonts, display a font as a sample, etc. [fx is looking at | 90 | list fonts, display a font as a sample, etc. [fx is looking at |
| 91 | multilingual font selection for the Unicode branch of Emacs.] | 91 | multilingual font selection for the Unicode branch of Emacs.] |
| 92 | 92 | ||
| 93 | ** Provide a convenient way to select a color with the mouse. | ||
| 94 | |||
| 93 | ** Rewrite the face code to be simpler, clearer and faster. | 95 | ** Rewrite the face code to be simpler, clearer and faster. |
| 94 | 96 | ||
| 95 | ** Program Enriched mode to read and save in RTF. [Is there actually a | 97 | ** Program Enriched mode to read and save in RTF. [Is there actually a |
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 0995999b7e2..9732a3f5432 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,14 @@ | |||
| 1 | 2006-07-08 Richard Stallman <rms@gnu.org> | ||
| 2 | |||
| 3 | * term/x-win.el (x-handle-display): Add doc string. | ||
| 4 | |||
| 5 | * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix. | ||
| 6 | |||
| 7 | * subr.el (def-edebug-spec): Moved here. | ||
| 8 | * emacs-lisp/edebug.el (def-edebug-spec): Moved to subr.el. | ||
| 9 | |||
| 10 | * imenu.el (imenu-choose-buffer-index): Doc fix. | ||
| 11 | |||
| 1 | 2006-07-08 Romain Francoise <romain@orebokech.com> | 12 | 2006-07-08 Romain Francoise <romain@orebokech.com> |
| 2 | 13 | ||
| 3 | * term/x-win.el (x-display-name): Fix typo. | 14 | * term/x-win.el (x-display-name): Fix typo. |
diff --git a/lispref/ChangeLog b/lispref/ChangeLog index 2d488c41eae..5e5365cd031 100644 --- a/lispref/ChangeLog +++ b/lispref/ChangeLog | |||
| @@ -1,3 +1,11 @@ | |||
| 1 | 2006-07-08 Richard Stallman <rms@gnu.org> | ||
| 2 | |||
| 3 | * commands.texi (Interactive Call): Use 3 as prefix in example | ||
| 4 | for execute-extended-command. | ||
| 5 | |||
| 6 | * display.texi (Attribute Functions): Move paragraph about | ||
| 7 | compatibility with Emacs < 21. | ||
| 8 | |||
| 1 | 2006-07-09 Kim F. Storm <storm@cua.dk> | 9 | 2006-07-09 Kim F. Storm <storm@cua.dk> |
| 2 | 10 | ||
| 3 | * display.texi (Refresh Screen): Clarify force-window-update. | 11 | * display.texi (Refresh Screen): Clarify force-window-update. |