diff options
| -rw-r--r-- | etc/NEWS | 7 | ||||
| -rw-r--r-- | lisp/ChangeLog | 14 | ||||
| -rw-r--r-- | src/ChangeLog | 5 |
3 files changed, 26 insertions, 0 deletions
| @@ -440,6 +440,13 @@ There is a new command M-x replace-rectangle. | |||
| 440 | query-replace-regexp, but takes a Lisp expression which is evaluated | 440 | query-replace-regexp, but takes a Lisp expression which is evaluated |
| 441 | after each match to get the replacement text. | 441 | after each match to get the replacement text. |
| 442 | 442 | ||
| 443 | ** M-x query-replace recognizes a new command `E' that let's you | ||
| 444 | edit the replacement string. | ||
| 445 | |||
| 446 | ** The new command mail-abbrev-complete-alias, bound to `M-TAB', let's | ||
| 447 | you complete mail aliases in the text, analogous to | ||
| 448 | lisp-complete-symbol. | ||
| 449 | |||
| 443 | ** Emacs now resizes mini-windows if appropriate. | 450 | ** Emacs now resizes mini-windows if appropriate. |
| 444 | 451 | ||
| 445 | If a message is longer than one line, or mini-buffer contents are | 452 | If a message is longer than one line, or mini-buffer contents are |
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 08151640526..87ed239db44 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,8 +1,22 @@ | |||
| 1 | 2000-05-03 Gerd Moellmann <gerd@gnu.org> | 1 | 2000-05-03 Gerd Moellmann <gerd@gnu.org> |
| 2 | 2 | ||
| 3 | * replace.el (query-replace-map): Add binding for `E'. | ||
| 4 | (query-replace-help): Extend help text. | ||
| 5 | (perform-replace): Allow editing the replacement string. | ||
| 6 | |||
| 7 | * make-mode.el (makefile-mode-abbrev-table): New variable. | ||
| 8 | (makefile-mode): Set local abbrev table to | ||
| 9 | makefile-mode-abbrev-table. | ||
| 10 | (makefile-font-lock-keywords): Fontify includes and conditionals. | ||
| 11 | |||
| 3 | * subr.el (add-minor-mode): Handle AFTER for keymaps. Don't | 12 | * subr.el (add-minor-mode): Handle AFTER for keymaps. Don't |
| 4 | set TOGGLE's value. | 13 | set TOGGLE's value. |
| 5 | 14 | ||
| 15 | * mailabbrev.el (mail-abbrev-insert-alias): Renamed from | ||
| 16 | mail-interactive-insert-alias. | ||
| 17 | (mail-abbrev-complete-alias): New command. | ||
| 18 | (mail-mode-map): Bind it to `M-TAB'. | ||
| 19 | |||
| 6 | 2000-05-03 Kenichi Handa <handa@etl.go.jp> | 20 | 2000-05-03 Kenichi Handa <handa@etl.go.jp> |
| 7 | 21 | ||
| 8 | * language/lao-util.el (lao-compose-region): New function. | 22 | * language/lao-util.el (lao-compose-region): New function. |
diff --git a/src/ChangeLog b/src/ChangeLog index 4e2d144afb4..8aea17f5c14 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,5 +1,10 @@ | |||
| 1 | 2000-05-03 Gerd Moellmann <gerd@gnu.org> | 1 | 2000-05-03 Gerd Moellmann <gerd@gnu.org> |
| 2 | 2 | ||
| 3 | * xdisp.c (handle_single_display_prop): If display property value | ||
| 4 | is invalid, or something not supported on the frame, restore | ||
| 5 | iterator's position to what it was initially. Make sure to return | ||
| 6 | 0 for invalid and unsupported property values. | ||
| 7 | |||
| 3 | * xterm.c (x_produce_glyphs) <composite chars>: Handle case | 8 | * xterm.c (x_produce_glyphs) <composite chars>: Handle case |
| 4 | that x_per_char_metric returns null. | 9 | that x_per_char_metric returns null. |
| 5 | 10 | ||