*** empty log message ***

This commit is contained in:
Gerd Moellmann 2000-05-03 19:49:39 +00:00
parent a21a394398
commit 4ff40dd081
3 changed files with 26 additions and 0 deletions

View file

@ -440,6 +440,13 @@ There is a new command M-x replace-rectangle.
query-replace-regexp, but takes a Lisp expression which is evaluated
after each match to get the replacement text.
** M-x query-replace recognizes a new command `E' that let's you
edit the replacement string.
** The new command mail-abbrev-complete-alias, bound to `M-TAB', let's
you complete mail aliases in the text, analogous to
lisp-complete-symbol.
** Emacs now resizes mini-windows if appropriate.
If a message is longer than one line, or mini-buffer contents are

View file

@ -1,8 +1,22 @@
2000-05-03 Gerd Moellmann <gerd@gnu.org>
* replace.el (query-replace-map): Add binding for `E'.
(query-replace-help): Extend help text.
(perform-replace): Allow editing the replacement string.
* make-mode.el (makefile-mode-abbrev-table): New variable.
(makefile-mode): Set local abbrev table to
makefile-mode-abbrev-table.
(makefile-font-lock-keywords): Fontify includes and conditionals.
* subr.el (add-minor-mode): Handle AFTER for keymaps. Don't
set TOGGLE's value.
* mailabbrev.el (mail-abbrev-insert-alias): Renamed from
mail-interactive-insert-alias.
(mail-abbrev-complete-alias): New command.
(mail-mode-map): Bind it to `M-TAB'.
2000-05-03 Kenichi Handa <handa@etl.go.jp>
* language/lao-util.el (lao-compose-region): New function.

View file

@ -1,5 +1,10 @@
2000-05-03 Gerd Moellmann <gerd@gnu.org>
* xdisp.c (handle_single_display_prop): If display property value
is invalid, or something not supported on the frame, restore
iterator's position to what it was initially. Make sure to return
0 for invalid and unsupported property values.
* xterm.c (x_produce_glyphs) <composite chars>: Handle case
that x_per_char_metric returns null.