# HG changeset patch # User Kim F. Storm # Date 1109105539 0 # Node ID 084dd82bd7a5fc951b648a4744c714c51e8564d2 # Parent 31cb6f65b5d50d0886b619bddf5946f4e0a964c9 *** empty log message *** diff -r 31cb6f65b5d5 -r 084dd82bd7a5 etc/NEWS --- 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 diff -r 31cb6f65b5d5 -r 084dd82bd7a5 lisp/ChangeLog --- 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 + + * 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 -r 31cb6f65b5d5 -r 084dd82bd7a5 lispref/ChangeLog --- 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 + + * 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 -r 31cb6f65b5d5 -r 084dd82bd7a5 src/ChangeLog --- 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 + * 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