diff options
| author | Richard M. Stallman | 2006-08-16 05:17:30 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2006-08-16 05:17:30 +0000 |
| commit | 3cb74cd1277590da7137297c1f2e6db95d9403a0 (patch) | |
| tree | 2e3e95b502a716652e22881511df7374a517f425 | |
| parent | c33f8948974b2c8614bec80860c6ec01a2a11d5f (diff) | |
| download | emacs-3cb74cd1277590da7137297c1f2e6db95d9403a0.tar.gz emacs-3cb74cd1277590da7137297c1f2e6db95d9403a0.zip | |
*** empty log message ***
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/ChangeLog | 21 | ||||
| -rw-r--r-- | lispref/ChangeLog | 8 | ||||
| -rw-r--r-- | man/ChangeLog | 10 | ||||
| -rw-r--r-- | src/ChangeLog | 4 |
5 files changed, 47 insertions, 0 deletions
| @@ -1,3 +1,7 @@ | |||
| 1 | 2006-08-16 Richard Stallman <rms@gnu.org> | ||
| 2 | |||
| 3 | * INSTALL.CVS: Clean up wording. | ||
| 4 | |||
| 1 | 2006-07-14 Eli Zaretskii <eliz@gnu.org> | 5 | 2006-07-14 Eli Zaretskii <eliz@gnu.org> |
| 2 | 6 | ||
| 3 | * configure.in (PKG_CHECK_MODULES): Redirect the output of | 7 | * configure.in (PKG_CHECK_MODULES): Redirect the output of |
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 31201341796..44e3f73538e 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,24 @@ | |||
| 1 | 2006-08-16 Richard Stallman <rms@gnu.org> | ||
| 2 | |||
| 3 | * term/x-win.el (x-clipboard-yank): Specify * in interactive spec. | ||
| 4 | (special-event-map): Process drag-n-drop events this way. | ||
| 5 | |||
| 6 | * simple.el (move-beginning-of-line): Test whether fields | ||
| 7 | would prevent motion back to line's first visible character. | ||
| 8 | If so, stop where the fields would stop the motion. | ||
| 9 | |||
| 10 | * newcomment.el (comment-indent): Fully update INDENT | ||
| 11 | before checking to see if it will change the text. | ||
| 12 | |||
| 13 | * cus-edit.el (custom-newline): New function. | ||
| 14 | (custom-mode-map): Bind newline to custom-newline. | ||
| 15 | |||
| 16 | * compare-w.el (compare-windows): Factor compare-ignore-whitespace | ||
| 17 | into ignore-whitespace. | ||
| 18 | Check each buffer for its skip-function. | ||
| 19 | Handle compare-windows-skip-whitespace special-case test | ||
| 20 | by returning t from default skip function. | ||
| 21 | |||
| 1 | 2006-08-15 Carsten Dominik <dominik@science.uva.nl> | 22 | 2006-08-15 Carsten Dominik <dominik@science.uva.nl> |
| 2 | 23 | ||
| 3 | * textmodes/org.el (org-clock-special-range, | 24 | * textmodes/org.el (org-clock-special-range, |
diff --git a/lispref/ChangeLog b/lispref/ChangeLog index 579918f36a2..d09689ce637 100644 --- a/lispref/ChangeLog +++ b/lispref/ChangeLog | |||
| @@ -1,3 +1,11 @@ | |||
| 1 | 2006-08-16 Richard Stallman <rms@gnu.org> | ||
| 2 | |||
| 3 | * keymaps.texi (Extended Menu Items): Show format of cached | ||
| 4 | bindings in extended menu items. | ||
| 5 | |||
| 6 | * customize.texi (Variable Definitions): Explain when the | ||
| 7 | standard value expression is evaluated. | ||
| 8 | |||
| 1 | 2006-08-15 Chong Yidong <cyd@stupidchicken.com> | 9 | 2006-08-15 Chong Yidong <cyd@stupidchicken.com> |
| 2 | 10 | ||
| 3 | * commands.texi (Reading One Event): Explain idleness in | 11 | * commands.texi (Reading One Event): Explain idleness in |
diff --git a/man/ChangeLog b/man/ChangeLog index cdf811da570..4063ca3e2b0 100644 --- a/man/ChangeLog +++ b/man/ChangeLog | |||
| @@ -1,3 +1,13 @@ | |||
| 1 | 2006-08-16 Richard Stallman <rms@gnu.org> | ||
| 2 | |||
| 3 | * misc.texi (Saving Emacs Sessions): Clean up wording. | ||
| 4 | |||
| 5 | * mark.texi (Marking Objects): Mention term "select all". | ||
| 6 | |||
| 7 | * emacs.texi (Top): Update subnode menu. | ||
| 8 | |||
| 9 | * help.texi (Help Mode): Move node up in file. | ||
| 10 | |||
| 1 | 2006-08-15 Carsten Dominik <dominik@science.uva.nl> | 11 | 2006-08-15 Carsten Dominik <dominik@science.uva.nl> |
| 2 | 12 | ||
| 3 | * org.texi (Installation, Activation): Split from Installation and | 13 | * org.texi (Installation, Activation): Split from Installation and |
diff --git a/src/ChangeLog b/src/ChangeLog index 58929cc40d2..b3242619d7f 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2006-08-16 Richard Stallman <rms@gnu.org> | ||
| 2 | |||
| 3 | * print.c (debug_output_compilation_hack): New function. | ||
| 4 | |||
| 1 | 2006-08-16 Kenichi Handa <handa@m17n.org> | 5 | 2006-08-16 Kenichi Handa <handa@m17n.org> |
| 2 | 6 | ||
| 3 | * fileio.c (choose_write_coding_system): Use LF for end-of-line | 7 | * fileio.c (choose_write_coding_system): Use LF for end-of-line |