diff options
| author | Gerd Moellmann | 2001-03-06 15:37:02 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 2001-03-06 15:37:02 +0000 |
| commit | 157ae2732f4e78bc97ab1a99d21740ea7a714f2e (patch) | |
| tree | 0aa66d39d7ea0ee1c581fb20275cf4db64d5ee0a | |
| parent | 7e72649221218795dade3f5b97785a2db2a96dd8 (diff) | |
| download | emacs-157ae2732f4e78bc97ab1a99d21740ea7a714f2e.tar.gz emacs-157ae2732f4e78bc97ab1a99d21740ea7a714f2e.zip | |
*** empty log message ***
| -rw-r--r-- | lisp/ChangeLog | 3 | ||||
| -rw-r--r-- | src/ChangeLog | 13 |
2 files changed, 16 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 5783263a9ec..0973abca3b5 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,8 @@ | |||
| 1 | 2001-03-06 Gerd Moellmann <gerd@gnu.org> | 1 | 2001-03-06 Gerd Moellmann <gerd@gnu.org> |
| 2 | 2 | ||
| 3 | * bookmark.el (bookmark-get-bookmark): Use assoc-ignore-case if | ||
| 4 | bookmark-completion-ignore-case it t. | ||
| 5 | |||
| 3 | * term/x-win.el (x-handle-xrm-switch): Accept more than one -xrm | 6 | * term/x-win.el (x-handle-xrm-switch): Accept more than one -xrm |
| 4 | switch, like xterm, and concat resource strings, with a newline | 7 | switch, like xterm, and concat resource strings, with a newline |
| 5 | between them. | 8 | between them. |
diff --git a/src/ChangeLog b/src/ChangeLog index 9c468c35107..f09e4eb0ea7 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,5 +1,18 @@ | |||
| 1 | 2001-03-06 Gerd Moellmann <gerd@gnu.org> | 1 | 2001-03-06 Gerd Moellmann <gerd@gnu.org> |
| 2 | 2 | ||
| 3 | * xterm.c (note_mouse_highlight): Call mouse_face_overlay_overlaps | ||
| 4 | to detect a case where we have to highlight a different region | ||
| 5 | despite not having left the currently highlighted region. | ||
| 6 | Set mouse_face_overlay in the x_display_info. | ||
| 7 | (x_term_init): Initialze the x_display_info's mouse_face_overlay. | ||
| 8 | |||
| 9 | * xterm.h (struct x_display_info): Add mouse_face_overlay. | ||
| 10 | |||
| 11 | * buffer.c (mouse_face_overlay_overlaps): New function. | ||
| 12 | |||
| 13 | * lisp.h (mouse_face_overlay_overlaps): Add prototype. | ||
| 14 | (Qmouse_face): Declare extern. | ||
| 15 | |||
| 3 | * xdisp.c (redisplay_internal): Set windows_or_buffers_changed | 16 | * xdisp.c (redisplay_internal): Set windows_or_buffers_changed |
| 4 | if face_change_count is non-zero. | 17 | if face_change_count is non-zero. |
| 5 | 18 | ||