diff options
| -rw-r--r-- | etc/NEWS | 3 | ||||
| -rw-r--r-- | src/ChangeLog | 3 |
2 files changed, 6 insertions, 0 deletions
| @@ -280,6 +280,9 @@ SQL buffer. | |||
| 280 | 280 | ||
| 281 | * Lisp Changes in Emacs 21.3 | 281 | * Lisp Changes in Emacs 21.3 |
| 282 | 282 | ||
| 283 | ** If text has a `keymap' property, that keymap takes precedence | ||
| 284 | over minor mode keymaps. | ||
| 285 | |||
| 283 | ** A hex escape in a string forces the string to be multibyte. | 286 | ** A hex escape in a string forces the string to be multibyte. |
| 284 | An octal escape makes it unibyte. | 287 | An octal escape makes it unibyte. |
| 285 | 288 | ||
diff --git a/src/ChangeLog b/src/ChangeLog index e0ffe90c594..2693da95d88 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,5 +1,8 @@ | |||
| 1 | 2002-01-02 Richard M. Stallman <rms@gnu.org> | 1 | 2002-01-02 Richard M. Stallman <rms@gnu.org> |
| 2 | 2 | ||
| 3 | * keyboard.c (read_key_sequence): Handle the keymap property | ||
| 4 | before minor mode maps. | ||
| 5 | |||
| 3 | * editfns.c (Fformat): Update thissize from field_width | 6 | * editfns.c (Fformat): Update thissize from field_width |
| 4 | based on the actual width, in the string case. | 7 | based on the actual width, in the string case. |
| 5 | 8 | ||