diff options
| -rw-r--r-- | lisp/ChangeLog | 13 | ||||
| -rw-r--r-- | src/ChangeLog | 6 |
2 files changed, 17 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 0eb7b4aacd3..8980cc4a970 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,16 @@ | |||
| 1 | 2000-08-10 Miles Bader <miles@lsi.nec.co.jp> | ||
| 2 | |||
| 3 | * comint.el (comint-send-input): Make the newline boundary overlay | ||
| 4 | rear-nonsticky. Use `insert' instead of `insert-before-markers'. | ||
| 5 | (comint-output-filter): Use `insert' instead of | ||
| 6 | `insert-before-markers'. Extend comint-last-output-overlay when | ||
| 7 | necessary since we can't rely on insert-before-markers to do it. | ||
| 8 | * gud.el (gud-filter): Use `with-current-buffer' instead of | ||
| 9 | save-excursion when inserting the output, so that point gets | ||
| 10 | updated correctly; the old method relied on a rather dodgy | ||
| 11 | side-effect of comint-output-filter to avoid the effect of | ||
| 12 | save-excursion. | ||
| 13 | |||
| 1 | 2000-08-10 Eli Zaretskii <eliz@is.elta.co.il> | 14 | 2000-08-10 Eli Zaretskii <eliz@is.elta.co.il> |
| 2 | 15 | ||
| 3 | * files.el (recover-file): Call insert-directory instead of | 16 | * files.el (recover-file): Call insert-directory instead of |
diff --git a/src/ChangeLog b/src/ChangeLog index 698b132b61f..a5a7118d4d0 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2000-08-10 Miles Bader <miles@gnu.org> | ||
| 2 | |||
| 3 | * w32term.c (note_mouse_highlight): Update calls to overlays_at. | ||
| 4 | |||
| 1 | 2000-08-10 Gerd Moellmann <gerd@gnu.org> | 5 | 2000-08-10 Gerd Moellmann <gerd@gnu.org> |
| 2 | 6 | ||
| 3 | * xdisp.c (Vmessages_buffer_name): New variable. | 7 | * xdisp.c (Vmessages_buffer_name): New variable. |
| @@ -50,8 +54,6 @@ | |||
| 50 | * callproc.c (Fcall_process): Terminate the unwind-protect around | 54 | * callproc.c (Fcall_process): Terminate the unwind-protect around |
| 51 | the post-read-conversion of coding system. | 55 | the post-read-conversion of coding system. |
| 52 | 56 | ||
| 53 | 2000-08-09 Miles Bader <miles@lsi.nec.co.jp> | ||
| 54 | |||
| 55 | * buffer.c (overlays_at): Add CHANGE_REQ parameter. | 57 | * buffer.c (overlays_at): Add CHANGE_REQ parameter. |
| 56 | (Foverlays_at, Fnext_overlay_change, Fprevious_overlay_change): Use it. | 58 | (Foverlays_at, Fnext_overlay_change, Fprevious_overlay_change): Use it. |
| 57 | * buffer.h (overlays_at): Update prototype. | 59 | * buffer.h (overlays_at): Update prototype. |