From: Kim F. Storm Date: Tue, 22 Feb 2005 20:52:19 +0000 (+0000) Subject: *** empty log message *** X-Git-Url: https://git.hcoop.net/bpt/emacs.git/commitdiff_plain/b686dd591d598b18d38737223292e1d0dbe3af7c *** empty log message *** --- diff --git a/etc/NEWS b/etc/NEWS index 64fb260a08..b4c65a77a9 100644 --- a/etc/NEWS +++ b/etc/NEWS @@ -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 diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 26d9f63f2d..6e5ae74b3e 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2005-02-22 Kim F. Storm + + * progmodes/hideif.el (hide-ifdef-use-define-alist): Use + completing-read. Suggested by Juan-Leon Lahoz Garcia. + 2005-02-22 Simon Josefsson * net/browse-url.el (browse-url-netscape-new-window-is-tab): New diff --git a/lispref/ChangeLog b/lispref/ChangeLog index 7da20942ea..96f87a1a9e 100644 --- a/lispref/ChangeLog +++ b/lispref/ChangeLog @@ -1,3 +1,8 @@ +2005-02-22 Kim F. Storm + + * minibuf.texi (Basic Completion): Allow symbols in addition to + strings in try-completion and all-completions. + 2005-02-14 Lute Kamstra * elisp.texi (Top): Remove reference to deleted node. diff --git a/src/ChangeLog b/src/ChangeLog index 8a6afe2706..e27911c388 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,5 +1,8 @@ 2005-02-22 Kim F. Storm + * 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