comparison etc/NEWS @ 41596:3c035e37d086

*** empty log message ***
author Stefan Monnier <monnier@iro.umontreal.ca>
date Mon, 26 Nov 2001 23:03:47 +0000
parents 452efff38a6e
children d5ea676e4052
comparison
equal deleted inserted replaced
41595:3a10e73aa1c1 41596:3c035e37d086
15 `--program-suffix' and `--program-transform-name' that affect the names of 15 `--program-suffix' and `--program-transform-name' that affect the names of
16 installed programs. 16 installed programs.
17 17
18 18
19 * Changes in Emacs 21.3 19 * Changes in Emacs 21.3
20
21 ** Unquoted `$' in file names do not signal an error any more when
22 the corresponding environment variable does not exist.
23 Instead, the `$ENVVAR' text is left as is, so that `$$' quoting
24 is only rarely needed.
20 25
21 ** jit-lock can now be delayed with `jit-lock-defer-time'. 26 ** jit-lock can now be delayed with `jit-lock-defer-time'.
22 27
23 If this variable is non-nil, its value should be the amount of Emacs 28 If this variable is non-nil, its value should be the amount of Emacs
24 idle time inseconds to wait before starting fontification. For 29 idle time inseconds to wait before starting fontification. For
179 (function (lambda () 184 (function (lambda ()
180 (master-set-slave sql-buffer)))) 185 (master-set-slave sql-buffer))))
181 186
182 187
183 * Lisp Changes in Emacs 21.3 188 * Lisp Changes in Emacs 21.3
189
190 ** The precedence of file-name-handlers has been changed.
191 Instead of blindly choosing the first handler that matches,
192 find-file-name-handler now gives precedence to a file-name handler
193 that matches near the end of the file name. More specifically, the
194 handler whose (match-beginning 0) is the largest is chosen.
195 In case of ties, the old "first matched" rule applies.
184 196
185 ** Dense keymaps now handle inheritance correctly. 197 ** Dense keymaps now handle inheritance correctly.
186 To that end, binding a key to t now behaves the same as binding it to 198 To that end, binding a key to t now behaves the same as binding it to
187 nil (it shadows parent bindings but not bindings in keymaps of lower 199 nil (it shadows parent bindings but not bindings in keymaps of lower
188 precedence). 200 precedence).