aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim F. Storm2005-02-22 20:52:19 +0000
committerKim F. Storm2005-02-22 20:52:19 +0000
commitb686dd591d598b18d38737223292e1d0dbe3af7c (patch)
tree41963c29bebac316a59dbffcffd3d02caa2eddd8
parenta41c174fd4a43ab3e6a84eecc91b93f1cdada7de (diff)
downloademacs-b686dd591d598b18d38737223292e1d0dbe3af7c.tar.gz
emacs-b686dd591d598b18d38737223292e1d0dbe3af7c.zip
*** empty log message ***
-rw-r--r--etc/NEWS3
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lispref/ChangeLog5
-rw-r--r--src/ChangeLog3
4 files changed, 15 insertions, 1 deletions
diff --git a/etc/NEWS b/etc/NEWS
index 64fb260a08a..b4c65a77a9a 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -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
3318of strings as well as hash-tables additionally to alists, obarrays 3318of strings as well as hash-tables additionally to alists, obarrays
3319and functions. Furthermore, the function `test-completion' is now 3319and functions. Furthermore, the function `test-completion' is now
3320exported to Lisp. 3320exported to Lisp. The keys in alists and hash tables may be either
3321strings 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 @@
12005-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
12005-02-22 Simon Josefsson <jas@extundo.com> 62005-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 @@
12005-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
12005-02-14 Lute Kamstra <lute@gnu.org> 62005-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 @@
12005-02-22 Kim F. Storm <storm@cua.dk> 12005-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
52005-02-21 Kim F. Storm <storm@cua.dk> 82005-02-21 Kim F. Storm <storm@cua.dk>