aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2001-11-26 23:03:47 +0000
committerStefan Monnier2001-11-26 23:03:47 +0000
commit111ed14e93300b48add2a69dd42bf50dd8d0c930 (patch)
treed9bc5f45e44ce6e0507ce74cb0c79bb92405a98d
parent8d2ced539740edfc3fa06298cc7411b97efcd1ea (diff)
downloademacs-111ed14e93300b48add2a69dd42bf50dd8d0c930.tar.gz
emacs-111ed14e93300b48add2a69dd42bf50dd8d0c930.zip
*** empty log message ***
-rw-r--r--etc/NEWS12
-rw-r--r--src/ChangeLog6
2 files changed, 18 insertions, 0 deletions
diff --git a/etc/NEWS b/etc/NEWS
index 3567952586a..0a1de617653 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -18,6 +18,11 @@ installed programs.
18 18
19* Changes in Emacs 21.3 19* Changes in Emacs 21.3
20 20
21** Unquoted `$' in file names do not signal an error any more when
22the corresponding environment variable does not exist.
23Instead, the `$ENVVAR' text is left as is, so that `$$' quoting
24is only rarely needed.
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
23If this variable is non-nil, its value should be the amount of Emacs 28If this variable is non-nil, its value should be the amount of Emacs
@@ -182,6 +187,13 @@ SQL buffer.
182 187
183* Lisp Changes in Emacs 21.3 188* Lisp Changes in Emacs 21.3
184 189
190** The precedence of file-name-handlers has been changed.
191Instead of blindly choosing the first handler that matches,
192find-file-name-handler now gives precedence to a file-name handler
193that matches near the end of the file name. More specifically, the
194handler whose (match-beginning 0) is the largest is chosen.
195In case of ties, the old "first matched" rule applies.
196
185** Dense keymaps now handle inheritance correctly. 197** Dense keymaps now handle inheritance correctly.
186To that end, binding a key to t now behaves the same as binding it to 198To that end, binding a key to t now behaves the same as binding it to
187nil (it shadows parent bindings but not bindings in keymaps of lower 199nil (it shadows parent bindings but not bindings in keymaps of lower
diff --git a/src/ChangeLog b/src/ChangeLog
index 8fa4bc03ca8..dcc30d1c37a 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,9 @@
12001-11-26 Stefan Monnier <monnier@cs.yale.edu>
2
3 * keymap.c (access_keymap): Handle t bindings like nil bindings.
4 Make nil bindings in char-tables transparent.
5 (store_in_keymap): Turn a nil binding into a t binding for char-tables.
6
12001-11-26 Richard M. Stallman <rms@gnu.org> 72001-11-26 Richard M. Stallman <rms@gnu.org>
2 8
3 * textprop.c (set_text_properties_1): Allow START, END in either order. 9 * textprop.c (set_text_properties_1): Allow START, END in either order.