Mercurial > hg > xemacs-beta
comparison lisp/ChangeLog @ 4794:8484c6c76837
Merge.
author | Aidan Kehoe <kehoea@parhasard.net> |
---|---|
date | Thu, 31 Dec 2009 15:47:03 +0000 |
parents | 8b50bee3c88c 95b04754ea8c |
children | b828e06dbe38 |
comparison
equal
deleted
inserted
replaced
4793:8b50bee3c88c | 4794:8484c6c76837 |
---|---|
1 2009-12-31 Aidan Kehoe <kehoea@parhasard.net> | |
2 | |
3 * list-mode.el (next-list-mode-item, switch-to-completions): Use | |
4 next-single-char-property-change, | |
5 previous-single-char-property-change now | |
6 next-single-property-change no longer pays attention to extents | |
7 not created using the text property functions. Fix for issue 546, | |
8 bug dates from changeset 8c96bdabcaf9. | |
9 | |
10 2009-12-21 Jerry James <james@xemacs.org> | |
11 | |
12 * dragdrop.el (offix-start-drag): Remove. | |
13 (offix-start-drag-region): Remove. | |
14 * mouse.el (mouse-begin-drag-n-drop): Remove OffiX support. | |
15 | |
16 2009-12-21 Adrian Aichner <adrian@xemacs.org> | |
17 | |
18 * package-get.el (package-get-download-sites): Remove | |
19 dk.xemacs.org from list of package download sites. | |
20 * package-get.el (package-get-pre-release-download-sites): Ditto. | |
21 | |
22 2009-12-21 Aidan Kehoe <kehoea@parhasard.net> | |
23 | |
24 * mule/arabic.el (arabic-iso8859-6): | |
25 Move the creation of this character set to this (dumped) file, | |
26 since it's needed for input on X11. | |
27 * mule/iso-with-esc.el: | |
28 Remove arabic-iso8859-6 and its Unicode map from this file. | |
29 * unicode.el (load-unicode-tables): | |
30 Load arabic-iso8859-6 on startup again. | |
31 | |
1 2009-12-19 Aidan Kehoe <kehoea@parhasard.net> | 32 2009-12-19 Aidan Kehoe <kehoea@parhasard.net> |
2 | 33 |
3 * cl-macs.el (cl-do-arglist): | 34 * cl-macs.el (cl-do-arglist): |
4 * cl-compat.el (keyword-of): | 35 * cl-compat.el (keyword-of): |
5 Remove support in our generated code for emacs versions where | 36 Remove support in our generated code for emacs versions where |
6 keywords are not self-quoting. | 37 keywords are not self-quoting. |
7 | 38 |
8 2009-12-18 Aidan Kehoe <kehoea@parhasard.net> | 39 2009-12-18 Aidan Kehoe <kehoea@parhasard.net> |
9 | 40 |
138 | 169 |
139 * bytecomp.el (save-window-excursion): | 170 * bytecomp.el (save-window-excursion): |
140 Remove the compiler form for this bytecode, we no longer generate | 171 Remove the compiler form for this bytecode, we no longer generate |
141 calls to it. Keep the information about the bytecode's numeric | 172 calls to it. Keep the information about the bytecode's numeric |
142 value, we want that for disassembling code. | 173 value, we want that for disassembling code. |
174 | |
175 2009-11-08 Aidan Kehoe <kehoea@parhasard.net> | |
176 | |
177 * cl-extra.el (cl-string-vector-equalp) | |
178 (cl-bit-vector-vector-equalp, cl-vector-array-equalp) | |
179 (cl-hash-table-contents-equalp): New functions, to implement | |
180 equalp treating arrays with identical contents as equivalent, as | |
181 specified by Common Lisp. | |
182 (equalp): Revise this function to implement array equivalence, | |
183 and the hash-table equalp behaviour specified by CL. | |
184 * cl-macs.el (equalp): Add a compiler macro for this function, | |
185 used when one of the arguments is constant, and as such, its type | |
186 is known at compile time. | |
143 | 187 |
144 2009-11-01 Aidan Kehoe <kehoea@parhasard.net> | 188 2009-11-01 Aidan Kehoe <kehoea@parhasard.net> |
145 | 189 |
146 * cl-extra.el (equalp): | 190 * cl-extra.el (equalp): |
147 Don't error if handed a string and a non-string. | 191 Don't error if handed a string and a non-string. |