aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim F. Storm2006-09-20 23:38:23 +0000
committerKim F. Storm2006-09-20 23:38:23 +0000
commitb521ddce87045aae396eb578d5c71084f5aa0cf9 (patch)
tree8b1707975d44d849e202e4cc1aee0193fa815806
parenteae510750d41e542edc35b5c74e9093f8afb2e01 (diff)
downloademacs-b521ddce87045aae396eb578d5c71084f5aa0cf9.tar.gz
emacs-b521ddce87045aae396eb578d5c71084f5aa0cf9.zip
*** empty log message ***
-rw-r--r--etc/NEWS4
-rw-r--r--lisp/ChangeLog8
-rw-r--r--lispref/ChangeLog4
-rw-r--r--src/ChangeLog6
4 files changed, 22 insertions, 0 deletions
diff --git a/etc/NEWS b/etc/NEWS
index 49c16c5c4b1..00a625adb17 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -3786,6 +3786,10 @@ negative, is now a float. For example: (expt 2 -2) => 0.25.
3786*** The function `eql' is now available without requiring the CL package. 3786*** The function `eql' is now available without requiring the CL package.
3787 3787
3788+++ 3788+++
3789*** The new function `memql' is like `memq', but uses `eql' for comparison,
3790that is, floats are compared by value and other elements with `eq'.
3791
3792+++
3789*** `makehash' is now obsolete. Use `make-hash-table' instead. 3793*** `makehash' is now obsolete. Use `make-hash-table' instead.
3790 3794
3791+++ 3795+++
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 3b109a11a40..ce4b4a3c584 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,11 @@
12006-09-21 Kim F. Storm <storm@cua.dk>
2
3 * emacs-lisp/cl-macs.el (member*): Use memql instead of complex code.
4 Suggested by Miles Bader.
5
6 * emacs-lisp/cl.el (pushnew): Rework 2006-09-10 change. Use memql
7 instead of add-to-list in the simple case.
8
12006-09-20 Vinicius Jose Latorre <viniciusjl@ig.com.br> 92006-09-20 Vinicius Jose Latorre <viniciusjl@ig.com.br>
2 10
3 * delim-col.el : Fix X-URL comment. 11 * delim-col.el : Fix X-URL comment.
diff --git a/lispref/ChangeLog b/lispref/ChangeLog
index 556a912ef21..b329e853895 100644
--- a/lispref/ChangeLog
+++ b/lispref/ChangeLog
@@ -1,3 +1,7 @@
12006-09-21 Kim F. Storm <storm@cua.dk>
2
3 * lists.texi (Sets And Lists): Add memql.
4
12006-09-20 Richard Stallman <rms@gnu.org> 52006-09-20 Richard Stallman <rms@gnu.org>
2 6
3 * windows.texi (Window Start): Minor cleanups. 7 * windows.texi (Window Start): Minor cleanups.
diff --git a/src/ChangeLog b/src/ChangeLog
index a311adfb715..1618c072fe2 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,9 @@
12006-09-21 Kim F. Storm <storm@cua.dk>
2
3 * fns.c (Fmemq): Refill doc string.
4 (Fmemql): New defun, like memq but using eql.
5 (syms_of_fns): Defsubr it.
6
12006-09-20 Kim F. Storm <storm@cua.dk> 72006-09-20 Kim F. Storm <storm@cua.dk>
2 8
3 * xdisp.c (pos_visible_p): CHARPOS < 0 means return info for 9 * xdisp.c (pos_visible_p): CHARPOS < 0 means return info for