comparison etc/NEWS @ 40729:650fb912b343

*** empty log message ***
author Richard M. Stallman <rms@gnu.org>
date Mon, 05 Nov 2001 00:14:46 +0000
parents b6d0ce452871
children 0de09e872237
comparison
equal deleted inserted replaced
40728:cd732a04b136 40729:650fb912b343
4 4
5 Please send Emacs bug reports to bug-gnu-emacs@gnu.org. 5 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.
13 17
14 ** On terminals whose erase-char is ^H (Backspace), Emacs 18 ** On terminals whose erase-char is ^H (Backspace), Emacs
104 (add-hook 'sql-set-sqli-hook 108 (add-hook 'sql-set-sqli-hook
105 (function (lambda () 109 (function (lambda ()
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
113 used in indented-text-mode. 125 used in indented-text-mode.
114 126