Mercurial > hg > xemacs-beta
comparison lisp/ChangeLog @ 4222:38ef5a6da799
[xemacs-hg @ 2007-10-13 14:08:26 by aidan]
Fix the nomule package build; eliminate some non-X compile time warnings.
author | aidan |
---|---|
date | Sat, 13 Oct 2007 14:08:30 +0000 |
parents | de99c4dbad18 |
children | 9b4442ac18c7 |
comparison
equal
deleted
inserted
replaced
4221:807c86a7612a | 4222:38ef5a6da799 |
---|---|
1 2007-10-13 Aidan Kehoe <kehoea@parhasard.net> | |
2 | |
3 * cmdloop.el (yes-or-no-p): | |
4 Only call #'yes-or-no-p-dialog-box if it's bound. Eliminates a | |
5 compile-time warning; should not actually avoid any run-time | |
6 errors. | |
7 * coding.el: | |
8 * coding.el ('automatic-conversion): Removed. | |
9 On non-Mule builds, alias 'iso-8859-1 to 'no-conversion, not | |
10 'undecided, since the latter does coding system autorecognition | |
11 that is useless and leads to stack overflows without Mule. Delete | |
12 'iso-8859-2 as an alias on non-Mule | |
13 * faces.el (face-font-instance): | |
14 Only call get-charset if it's bound. | |
15 * faces.el (xpm-color-symbols): | |
16 Only modify xpm-color-symbols if it's bound. | |
17 * map-ynp.el (map-y-or-n-p): | |
18 Check that #'get-dialog-box-response is bound before calling it. | |
19 * menubar.el: | |
20 List #'menu-split-long-menu as an autoload, for those builds that | |
21 don't use it at runtime but nonetheless have to compile code that | |
22 uses it. | |
23 * minibuf.el (mouse-read-file-name-1): | |
24 Only use scrollbar-width if it's bound. | |
25 * obsolete.el: | |
26 Only provide #'add-meu-item, #'add-menu, | |
27 #'package-get-download-menu if the menubar feature is available at | |
28 runtime. | |
29 * obsolete.el (find-non-ascii-charset-string): | |
30 Only call #'charset-in-string if it's bound; else give nil. | |
31 * obsolete.el (find-non-ascii-charset-region): | |
32 Only call #'charset-in-region if it's bound; else give nil. | |
33 * select.el (activate-region-as-selection): | |
34 Only call #'mouse-track-rectangle-p if it's bound. | |
35 * select.el (select-make-extent-for-selection): | |
36 Ditto. | |
37 * simple.el (zmacs-make-extent-for-region): | |
38 Only call #'default-mouse-track-next-move-rect if it's bound. | |
39 * simple.el (zmacs-activate-region): | |
40 Use and-boundp rather than (and (boundp ...))) when checking for a | |
41 variable. | |
42 * unicode.el (featurep): | |
43 Don't bind res, which is not used, in the loop. | |
44 | |
1 2007-10-06 Stephen J. Turnbull <stephen@xemacs.org> | 45 2007-10-06 Stephen J. Turnbull <stephen@xemacs.org> |
2 | 46 |
3 * x-faces.el (x-color-list-internal): Should return a list of | 47 * x-faces.el (x-color-list-internal): Should return a list of |
4 strings. Make it so. | 48 strings. Make it so. |
5 | 49 |