changeset 60212:084dd82bd7a5

*** empty log message ***
author Kim F. Storm <storm@cua.dk>
date Tue, 22 Feb 2005 20:52:19 +0000
parents 31cb6f65b5d5
children de939ef4dd88
files etc/NEWS lisp/ChangeLog lispref/ChangeLog src/ChangeLog
diffstat 4 files changed, 15 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/etc/NEWS	Tue Feb 22 20:50:05 2005 +0000
+++ b/etc/NEWS	Tue Feb 22 20:52:19 2005 +0000
@@ -3317,7 +3317,8 @@
 ** 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
--- a/lisp/ChangeLog	Tue Feb 22 20:50:05 2005 +0000
+++ b/lisp/ChangeLog	Tue Feb 22 20:52:19 2005 +0000
@@ -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
--- a/lispref/ChangeLog	Tue Feb 22 20:50:05 2005 +0000
+++ b/lispref/ChangeLog	Tue Feb 22 20:52:19 2005 +0000
@@ -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.
--- a/src/ChangeLog	Tue Feb 22 20:50:05 2005 +0000
+++ b/src/ChangeLog	Tue Feb 22 20:52:19 2005 +0000
@@ -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>