diff options
| author | Kim F. Storm | 2006-09-20 23:38:23 +0000 |
|---|---|---|
| committer | Kim F. Storm | 2006-09-20 23:38:23 +0000 |
| commit | b521ddce87045aae396eb578d5c71084f5aa0cf9 (patch) | |
| tree | 8b1707975d44d849e202e4cc1aee0193fa815806 | |
| parent | eae510750d41e542edc35b5c74e9093f8afb2e01 (diff) | |
| download | emacs-b521ddce87045aae396eb578d5c71084f5aa0cf9.tar.gz emacs-b521ddce87045aae396eb578d5c71084f5aa0cf9.zip | |
*** empty log message ***
| -rw-r--r-- | etc/NEWS | 4 | ||||
| -rw-r--r-- | lisp/ChangeLog | 8 | ||||
| -rw-r--r-- | lispref/ChangeLog | 4 | ||||
| -rw-r--r-- | src/ChangeLog | 6 |
4 files changed, 22 insertions, 0 deletions
| @@ -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, | ||
| 3790 | that 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 @@ | |||
| 1 | 2006-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 | |||
| 1 | 2006-09-20 Vinicius Jose Latorre <viniciusjl@ig.com.br> | 9 | 2006-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 @@ | |||
| 1 | 2006-09-21 Kim F. Storm <storm@cua.dk> | ||
| 2 | |||
| 3 | * lists.texi (Sets And Lists): Add memql. | ||
| 4 | |||
| 1 | 2006-09-20 Richard Stallman <rms@gnu.org> | 5 | 2006-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 @@ | |||
| 1 | 2006-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 | |||
| 1 | 2006-09-20 Kim F. Storm <storm@cua.dk> | 7 | 2006-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 |