Mercurial > hg > xemacs-beta
comparison lisp/ChangeLog @ 5522:544e6336d37c
Reimplement a few GNU functions in terms of CL functions, subr.el
2011-06-19 Aidan Kehoe <kehoea@parhasard.net>
* cl-macs.el:
* cl-macs.el (assoc-ignore-case, assoc-ignore-representation):
* cl-macs.el (member-ignore-case): New compiler macros.
* subr.el (assoc-ignore-case):
* subr.el (assoc-ignore-representation):
* subr.el (member-ignore-case):
* subr.el (split-path):
* subr.el (delete-dups):
Reimplement a few GNU functions in terms of their CL counterparts,
for the sake of circularity checking and some speed; add type
checking (used in interpreted code and with low speed and safety
checking) for the sake of revealing incompatibilities when
developing.
* subr.el (remove-hook):
There's no need for flet here, an explicit lambda is enough.
author | Aidan Kehoe <kehoea@parhasard.net> |
---|---|
date | Sun, 19 Jun 2011 17:43:03 +0100 |
parents | bcd74c477a38 |
children | 810b77562486 |
comparison
equal
deleted
inserted
replaced
5521:3310f36295a0 | 5522:544e6336d37c |
---|---|
1 2011-06-19 Aidan Kehoe <kehoea@parhasard.net> | |
2 | |
3 * cl-macs.el: | |
4 * cl-macs.el (assoc-ignore-case, assoc-ignore-representation): | |
5 * cl-macs.el (member-ignore-case): New compiler macros. | |
6 * subr.el (assoc-ignore-case): | |
7 * subr.el (assoc-ignore-representation): | |
8 * subr.el (member-ignore-case): | |
9 * subr.el (split-path): | |
10 * subr.el (delete-dups): | |
11 Reimplement a few GNU functions in terms of their CL counterparts, | |
12 for the sake of circularity checking and some speed; add type | |
13 checking (used in interpreted code and with low speed and safety | |
14 checking) for the sake of revealing incompatibilities when | |
15 developing. | |
16 * subr.el (remove-hook): | |
17 There's no need for flet here, an explicit lambda is enough. | |
18 | |
1 2011-06-04 Aidan Kehoe <kehoea@parhasard.net> | 19 2011-06-04 Aidan Kehoe <kehoea@parhasard.net> |
2 | 20 |
3 * gutter-items.el (add-tab-to-gutter): | 21 * gutter-items.el (add-tab-to-gutter): |
4 * toolbar-items.el (toolbar-add-item-data): | 22 * toolbar-items.el (toolbar-add-item-data): |
5 Switch to #'dolist instead of #'mapcar in a couple of places where | 23 Switch to #'dolist instead of #'mapcar in a couple of places where |