diff options
| author | Kim F. Storm | 2005-02-22 20:52:19 +0000 |
|---|---|---|
| committer | Kim F. Storm | 2005-02-22 20:52:19 +0000 |
| commit | b686dd591d598b18d38737223292e1d0dbe3af7c (patch) | |
| tree | 41963c29bebac316a59dbffcffd3d02caa2eddd8 | |
| parent | a41c174fd4a43ab3e6a84eecc91b93f1cdada7de (diff) | |
| download | emacs-b686dd591d598b18d38737223292e1d0dbe3af7c.tar.gz emacs-b686dd591d598b18d38737223292e1d0dbe3af7c.zip | |
*** empty log message ***
| -rw-r--r-- | etc/NEWS | 3 | ||||
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lispref/ChangeLog | 5 | ||||
| -rw-r--r-- | src/ChangeLog | 3 |
4 files changed, 15 insertions, 1 deletions
| @@ -3317,7 +3317,8 @@ and `display-warning'. | |||
| 3317 | ** The functions all-completions and try-completion now accept lists | 3317 | ** The functions all-completions and try-completion now accept lists |
| 3318 | of strings as well as hash-tables additionally to alists, obarrays | 3318 | of strings as well as hash-tables additionally to alists, obarrays |
| 3319 | and functions. Furthermore, the function `test-completion' is now | 3319 | and functions. Furthermore, the function `test-completion' is now |
| 3320 | exported to Lisp. | 3320 | exported to Lisp. The keys in alists and hash tables may be either |
| 3321 | strings or symbols, which are automatically converted with to strings. | ||
| 3321 | 3322 | ||
| 3322 | --- | 3323 | --- |
| 3323 | ** When pure storage overflows while dumping, Emacs now prints how | 3324 | ** When pure storage overflows while dumping, Emacs now prints how |
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 26d9f63f2db..6e5ae74b3e4 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2005-02-22 Kim F. Storm <storm@cua.dk> | ||
| 2 | |||
| 3 | * progmodes/hideif.el (hide-ifdef-use-define-alist): Use | ||
| 4 | completing-read. Suggested by Juan-Leon Lahoz Garcia. | ||
| 5 | |||
| 1 | 2005-02-22 Simon Josefsson <jas@extundo.com> | 6 | 2005-02-22 Simon Josefsson <jas@extundo.com> |
| 2 | 7 | ||
| 3 | * net/browse-url.el (browse-url-netscape-new-window-is-tab): New | 8 | * net/browse-url.el (browse-url-netscape-new-window-is-tab): New |
diff --git a/lispref/ChangeLog b/lispref/ChangeLog index 7da20942eaf..96f87a1a9e2 100644 --- a/lispref/ChangeLog +++ b/lispref/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2005-02-22 Kim F. Storm <storm@cua.dk> | ||
| 2 | |||
| 3 | * minibuf.texi (Basic Completion): Allow symbols in addition to | ||
| 4 | strings in try-completion and all-completions. | ||
| 5 | |||
| 1 | 2005-02-14 Lute Kamstra <lute@gnu.org> | 6 | 2005-02-14 Lute Kamstra <lute@gnu.org> |
| 2 | 7 | ||
| 3 | * elisp.texi (Top): Remove reference to deleted node. | 8 | * elisp.texi (Top): Remove reference to deleted node. |
diff --git a/src/ChangeLog b/src/ChangeLog index 8a6afe27067..e27911c388c 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,5 +1,8 @@ | |||
| 1 | 2005-02-22 Kim F. Storm <storm@cua.dk> | 1 | 2005-02-22 Kim F. Storm <storm@cua.dk> |
| 2 | 2 | ||
| 3 | * minibuf.c (Ftry_completion, Fall_completions): Allow both string | ||
| 4 | and symbol keys in alists and hash tables. | ||
| 5 | |||
| 3 | * xdisp.c (fast_find_position): Fix search for start of overlay. | 6 | * xdisp.c (fast_find_position): Fix search for start of overlay. |
| 4 | 7 | ||
| 5 | 2005-02-21 Kim F. Storm <storm@cua.dk> | 8 | 2005-02-21 Kim F. Storm <storm@cua.dk> |