*** empty log message ***
This commit is contained in:
parent
eae510750d
commit
b521ddce87
4 changed files with 22 additions and 0 deletions
4
etc/NEWS
4
etc/NEWS
|
@ -3785,6 +3785,10 @@ negative, is now a float. For example: (expt 2 -2) => 0.25.
|
|||
+++
|
||||
*** The function `eql' is now available without requiring the CL package.
|
||||
|
||||
+++
|
||||
*** The new function `memql' is like `memq', but uses `eql' for comparison,
|
||||
that is, floats are compared by value and other elements with `eq'.
|
||||
|
||||
+++
|
||||
*** `makehash' is now obsolete. Use `make-hash-table' instead.
|
||||
|
||||
|
|
|
@ -1,3 +1,11 @@
|
|||
2006-09-21 Kim F. Storm <storm@cua.dk>
|
||||
|
||||
* emacs-lisp/cl-macs.el (member*): Use memql instead of complex code.
|
||||
Suggested by Miles Bader.
|
||||
|
||||
* emacs-lisp/cl.el (pushnew): Rework 2006-09-10 change. Use memql
|
||||
instead of add-to-list in the simple case.
|
||||
|
||||
2006-09-20 Vinicius Jose Latorre <viniciusjl@ig.com.br>
|
||||
|
||||
* delim-col.el : Fix X-URL comment.
|
||||
|
|
|
@ -1,3 +1,7 @@
|
|||
2006-09-21 Kim F. Storm <storm@cua.dk>
|
||||
|
||||
* lists.texi (Sets And Lists): Add memql.
|
||||
|
||||
2006-09-20 Richard Stallman <rms@gnu.org>
|
||||
|
||||
* windows.texi (Window Start): Minor cleanups.
|
||||
|
|
|
@ -1,3 +1,9 @@
|
|||
2006-09-21 Kim F. Storm <storm@cua.dk>
|
||||
|
||||
* fns.c (Fmemq): Refill doc string.
|
||||
(Fmemql): New defun, like memq but using eql.
|
||||
(syms_of_fns): Defsubr it.
|
||||
|
||||
2006-09-20 Kim F. Storm <storm@cua.dk>
|
||||
|
||||
* xdisp.c (pos_visible_p): CHARPOS < 0 means return info for
|
||||
|
|
Loading…
Add table
Reference in a new issue