diff options
| author | Richard M. Stallman | 2001-11-05 00:14:46 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2001-11-05 00:14:46 +0000 |
| commit | 830047fdb65770704faf43fec7ecac3f3d916cf0 (patch) | |
| tree | 60d318b0bf841bd5c6d7323e94be6ae6cfd80675 | |
| parent | 34368a22c54c089f5ebabb7f0625862d6b8008f8 (diff) | |
| download | emacs-830047fdb65770704faf43fec7ecac3f3d916cf0.tar.gz emacs-830047fdb65770704faf43fec7ecac3f3d916cf0.zip | |
*** empty log message ***
| -rw-r--r-- | etc/NEWS | 16 | ||||
| -rw-r--r-- | lisp/ChangeLog | 3 | ||||
| -rw-r--r-- | src/ChangeLog | 12 |
3 files changed, 29 insertions, 2 deletions
| @@ -6,7 +6,11 @@ Please send Emacs bug reports to bug-gnu-emacs@gnu.org. | |||
| 6 | For older news, see the file ONEWS | 6 | For older news, see the file ONEWS |
| 7 | 7 | ||
| 8 | 8 | ||
| 9 | * Changes in Emacs 21.2 | 9 | * Changes in Emacs 21.3 |
| 10 | |||
| 11 | ** Display of hollow cursors now obeys the buffer-local value (if any) | ||
| 12 | of `cursor-in-non-selected-windows' in the buffer that the cursor | ||
| 13 | appears in. | ||
| 10 | 14 | ||
| 11 | ** The default values of `tooltip-delay' and `tooltip-hide-delay' | 15 | ** The default values of `tooltip-delay' and `tooltip-hide-delay' |
| 12 | were changed. | 16 | were changed. |
| @@ -106,7 +110,15 @@ SQL buffer. | |||
| 106 | (master-set-slave sql-buffer)))) | 110 | (master-set-slave sql-buffer)))) |
| 107 | 111 | ||
| 108 | 112 | ||
| 109 | * Lisp Changes in Emacs 21.2 | 113 | * Lisp Changes in Emacs 21.3 |
| 114 | |||
| 115 | ** New function `buffer-local-value'. | ||
| 116 | |||
| 117 | - Function: buffer-local-value variable buffer | ||
| 118 | |||
| 119 | This function returns the buffer-local binding of VARIABLE (a symbol) | ||
| 120 | in buffer BUFFER. If VARIABLE does not have a buffer-local binding in | ||
| 121 | buffer BUFFER, it returns the default value of VARIABLE instead. | ||
| 110 | 122 | ||
| 111 | ** The default value of paragraph-start and indent-line-function has | 123 | ** The default value of paragraph-start and indent-line-function has |
| 112 | been changed to reflect the one used in text-mode rather than the one | 124 | been changed to reflect the one used in text-mode rather than the one |
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 2ad0511c326..ce8c9aba4bd 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,8 @@ | |||
| 1 | 2001-11-04 Richard M. Stallman <rms@gnu.org> | 1 | 2001-11-04 Richard M. Stallman <rms@gnu.org> |
| 2 | 2 | ||
| 3 | * international/mule-cmds.el (set-locale-environment): | ||
| 4 | Make it interactive; make arg optional. | ||
| 5 | |||
| 3 | * international/mule-diag.el (help-funs): Require help-funs. | 6 | * international/mule-diag.el (help-funs): Require help-funs. |
| 4 | 7 | ||
| 5 | 2001-11-04 Eli Zaretskii <eliz@is.elta.co.il> | 8 | 2001-11-04 Eli Zaretskii <eliz@is.elta.co.il> |
diff --git a/src/ChangeLog b/src/ChangeLog index 15942022a46..7a63543d60b 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -4,6 +4,18 @@ | |||
| 4 | for display-table glyphs from the code buffer text, to fix | 4 | for display-table glyphs from the code buffer text, to fix |
| 5 | bugs in the former. | 5 | bugs in the former. |
| 6 | 6 | ||
| 7 | 2001-11-04 Michael Welsh Duggan <md5i@cs.cmu.edu> | ||
| 8 | |||
| 9 | * buffer.c (Fbuffer_local_value): New function. | ||
| 10 | (syms_of_buffer): defsubr it. | ||
| 11 | |||
| 12 | * xterm.c, w32term.c (x_display_and_set_cursor): Use buffer-local | ||
| 13 | value of `cursor-in-non-selected-windows'. | ||
| 14 | |||
| 15 | * lisp.h (Qcursor_in_non_selected_windows): New declaration. | ||
| 16 | * xdisp.c (Qcursor_in_non_selected_windows): New variable. | ||
| 17 | (syms_of_xdisp): Initialize it. | ||
| 18 | |||
| 7 | 2001-11-04 Pavel Jan,Bm(Bk <Pavel@Janik.cz> | 19 | 2001-11-04 Pavel Jan,Bm(Bk <Pavel@Janik.cz> |
| 8 | 20 | ||
| 9 | * xfns.c (Fx_create_frame): Doc fix. | 21 | * xfns.c (Fx_create_frame): Doc fix. |