1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-01 08:17:38 +00:00

*** empty log message ***

This commit is contained in:
Kim F. Storm 2005-02-22 20:52:19 +00:00
parent a41c174fd4
commit b686dd591d
4 changed files with 15 additions and 1 deletions

View File

@ -3317,7 +3317,8 @@ and `display-warning'.
** The functions all-completions and try-completion now accept lists
of strings as well as hash-tables additionally to alists, obarrays
and functions. Furthermore, the function `test-completion' is now
exported to Lisp.
exported to Lisp. The keys in alists and hash tables may be either
strings or symbols, which are automatically converted with to strings.
---
** When pure storage overflows while dumping, Emacs now prints how

View File

@ -1,3 +1,8 @@
2005-02-22 Kim F. Storm <storm@cua.dk>
* progmodes/hideif.el (hide-ifdef-use-define-alist): Use
completing-read. Suggested by Juan-Leon Lahoz Garcia.
2005-02-22 Simon Josefsson <jas@extundo.com>
* net/browse-url.el (browse-url-netscape-new-window-is-tab): New

View File

@ -1,3 +1,8 @@
2005-02-22 Kim F. Storm <storm@cua.dk>
* minibuf.texi (Basic Completion): Allow symbols in addition to
strings in try-completion and all-completions.
2005-02-14 Lute Kamstra <lute@gnu.org>
* elisp.texi (Top): Remove reference to deleted node.

View File

@ -1,5 +1,8 @@
2005-02-22 Kim F. Storm <storm@cua.dk>
* minibuf.c (Ftry_completion, Fall_completions): Allow both string
and symbol keys in alists and hash tables.
* xdisp.c (fast_find_position): Fix search for start of overlay.
2005-02-21 Kim F. Storm <storm@cua.dk>