diff options
| author | Richard M. Stallman | 2001-11-13 03:14:36 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2001-11-13 03:14:36 +0000 |
| commit | 1c1d3d69ffe87331d382841309016839bb83267a (patch) | |
| tree | 052acbd0b4e11c40e13069ffdc766696f9a7cbab | |
| parent | ed9ae328c1612bac90a4015ed2abbb78310846be (diff) | |
| download | emacs-1c1d3d69ffe87331d382841309016839bb83267a.tar.gz emacs-1c1d3d69ffe87331d382841309016839bb83267a.zip | |
*** empty log message ***
| -rw-r--r-- | etc/NEWS | 17 | ||||
| -rw-r--r-- | lisp/ChangeLog | 2 | ||||
| -rw-r--r-- | src/ChangeLog | 7 |
3 files changed, 23 insertions, 3 deletions
| @@ -140,6 +140,17 @@ SQL buffer. | |||
| 140 | 140 | ||
| 141 | * Lisp Changes in Emacs 21.3 | 141 | * Lisp Changes in Emacs 21.3 |
| 142 | 142 | ||
| 143 | ** If a major mode function has a non-nil `no-clone-indirect' | ||
| 144 | property, `clone-indirect-buffer' signals an error if you use | ||
| 145 | it in that buffer. | ||
| 146 | |||
| 147 | ** If you set `query-replace-skip-read-only' non-nil, | ||
| 148 | `query-replace' and related functions simply ignore | ||
| 149 | a match if part of it has a read-only property. | ||
| 150 | |||
| 151 | ** In `replace-match', the replacement replacement text no longer | ||
| 152 | inherits properties from surrounding text. | ||
| 153 | |||
| 143 | ** New function `buffer-local-value'. | 154 | ** New function `buffer-local-value'. |
| 144 | 155 | ||
| 145 | - Function: buffer-local-value variable buffer | 156 | - Function: buffer-local-value variable buffer |
| @@ -148,9 +159,9 @@ This function returns the buffer-local binding of VARIABLE (a symbol) | |||
| 148 | in buffer BUFFER. If VARIABLE does not have a buffer-local binding in | 159 | in buffer BUFFER. If VARIABLE does not have a buffer-local binding in |
| 149 | buffer BUFFER, it returns the default value of VARIABLE instead. | 160 | buffer BUFFER, it returns the default value of VARIABLE instead. |
| 150 | 161 | ||
| 151 | ** The default value of paragraph-start and indent-line-function has | 162 | ** The default value of `paragraph-start' and `indent-line-function' has |
| 152 | been changed to reflect the one used in text-mode rather than the one | 163 | been changed to reflect the one used in Text mode rather than the one |
| 153 | used in indented-text-mode. | 164 | used in Indented Text mode. |
| 154 | 165 | ||
| 155 | ** New function `text-clone-create'. Text clones are chunks of text | 166 | ** New function `text-clone-create'. Text clones are chunks of text |
| 156 | that are kept identical by transparently propagating changes from one | 167 | that are kept identical by transparently propagating changes from one |
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 833bf120a10..7a226bc6034 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,7 @@ | |||
| 1 | 2001-11-12 Richard M. Stallman <rms@gnu.org> | 1 | 2001-11-12 Richard M. Stallman <rms@gnu.org> |
| 2 | 2 | ||
| 3 | * server.el (server-edit, server-done): Doc fix. | ||
| 4 | |||
| 3 | * simple.el (clone-indirect-buffer): Error if major mode symbol | 5 | * simple.el (clone-indirect-buffer): Error if major mode symbol |
| 4 | has a no-clone-indirect property. | 6 | has a no-clone-indirect property. |
| 5 | (clone-buffer): Check for obvious errors before reading clone name. | 7 | (clone-buffer): Check for obvious errors before reading clone name. |
diff --git a/src/ChangeLog b/src/ChangeLog index d0b7783cc04..83ea2f50484 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,10 @@ | |||
| 1 | 2001-11-12 Richard M. Stallman <rms@gnu.org> | ||
| 2 | |||
| 3 | * xterm.c (XTread_socket): Don't update focus for EnterNotify or | ||
| 4 | LeaveNotify events. Only FocusIn and FocusOut do that now. | ||
| 5 | (x_display_and_set_cursor): Do display hollow cursors in active | ||
| 6 | minibuffer windows when they are not selected. | ||
| 7 | |||
| 1 | 2001-11-12 Jason Rumney <jasonr@gnu.org> | 8 | 2001-11-12 Jason Rumney <jasonr@gnu.org> |
| 2 | 9 | ||
| 3 | * w32console.c, w32fns.c, w32menu.c, w32proc.c, w32select.c, | 10 | * w32console.c, w32fns.c, w32menu.c, w32proc.c, w32select.c, |