diff options
| author | Stefan Monnier | 2001-11-26 23:03:47 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2001-11-26 23:03:47 +0000 |
| commit | 111ed14e93300b48add2a69dd42bf50dd8d0c930 (patch) | |
| tree | d9bc5f45e44ce6e0507ce74cb0c79bb92405a98d | |
| parent | 8d2ced539740edfc3fa06298cc7411b97efcd1ea (diff) | |
| download | emacs-111ed14e93300b48add2a69dd42bf50dd8d0c930.tar.gz emacs-111ed14e93300b48add2a69dd42bf50dd8d0c930.zip | |
*** empty log message ***
| -rw-r--r-- | etc/NEWS | 12 | ||||
| -rw-r--r-- | src/ChangeLog | 6 |
2 files changed, 18 insertions, 0 deletions
| @@ -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 | ||
| 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. | ||
| 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 |
| @@ -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. | ||
| 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. | ||
| 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 |
diff --git a/src/ChangeLog b/src/ChangeLog index 8fa4bc03ca8..dcc30d1c37a 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,9 @@ | |||
| 1 | 2001-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 | |||
| 1 | 2001-11-26 Richard M. Stallman <rms@gnu.org> | 7 | 2001-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. |