diff options
| author | Gerd Moellmann | 2000-11-28 13:59:18 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 2000-11-28 13:59:18 +0000 |
| commit | bebe4a2cef8ac2ff23b9e93543f0ec21f471888d (patch) | |
| tree | dd68a995e9df4a1b28f31e880dcb091c933fe5f8 | |
| parent | 25160ec0819268f0a011eaba04dba34b8aa6c7a0 (diff) | |
| download | emacs-bebe4a2cef8ac2ff23b9e93543f0ec21f471888d.tar.gz emacs-bebe4a2cef8ac2ff23b9e93543f0ec21f471888d.zip | |
*** empty log message ***
| -rw-r--r-- | lisp/ChangeLog | 6 | ||||
| -rw-r--r-- | src/ChangeLog | 14 |
2 files changed, 20 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 03e8a380578..72fced9d7e8 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,9 @@ | |||
| 1 | 2000-11-28 Gerd Moellmann <gerd@gnu.org> | ||
| 2 | |||
| 3 | * abbrev.el (prepare-abbrev-list-buffer): Get the value of | ||
| 4 | local-abbrev-table before changing buffers because it might | ||
| 5 | have a buffer-local binding. | ||
| 6 | |||
| 1 | 2000-11-28 Miles Bader <miles@gnu.org> | 7 | 2000-11-28 Miles Bader <miles@gnu.org> |
| 2 | 8 | ||
| 3 | * simple.el (delete-horizontal-space): Handle fields more generally. | 9 | * simple.el (delete-horizontal-space): Handle fields more generally. |
diff --git a/src/ChangeLog b/src/ChangeLog index ecec6f260e2..5854f9817e6 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,5 +1,19 @@ | |||
| 1 | 2000-11-28 Gerd Moellmann <gerd@gnu.org> | 1 | 2000-11-28 Gerd Moellmann <gerd@gnu.org> |
| 2 | 2 | ||
| 3 | * window.c (coordinates_in_window): If on a mode or header line, | ||
| 4 | but sufficiently close to its start, return ``on vertical | ||
| 5 | border''. This gives us a way to drag windows horizontally when | ||
| 6 | using toolkit scroll bars. | ||
| 7 | |||
| 8 | * xterm.c (note_mouse_highlight): Change the cursor shape | ||
| 9 | on the vertical border between windows. | ||
| 10 | |||
| 11 | * xterm.h (struct x_output): Add member horizontal_drag_cursor. | ||
| 12 | |||
| 13 | * xfns.c (Vx_window_horizontal_drag_shape): New variable. | ||
| 14 | (syms_of_xfns): DEFVAR_LISP it. | ||
| 15 | (x_set_mouse_color): Create frame's horizontal_drag_cursor. | ||
| 16 | |||
| 3 | * textprop.c (text_read_only): New function. | 17 | * textprop.c (text_read_only): New function. |
| 4 | (verify_interval_modification): Use it instead of signaling | 18 | (verify_interval_modification): Use it instead of signaling |
| 5 | `text-read-only'. This makes it easier to catch this error | 19 | `text-read-only'. This makes it easier to catch this error |