Mercurial > hg > xemacs-beta
comparison src/ChangeLog @ 4408:8bbabcab2c42
Merge.
author | Aidan Kehoe <kehoea@parhasard.net> |
---|---|
date | Sun, 20 Jan 2008 13:09:58 +0100 |
parents | 4ee73bbe4f8e 5998e37dc35e |
children | aae1994dfeec fd8a9a4d81d9 |
comparison
equal
deleted
inserted
replaced
4407:4ee73bbe4f8e | 4408:8bbabcab2c42 |
---|---|
25 row. Assert that the case table isn't corrupt. | 25 row. Assert that the case table isn't corrupt. |
26 | 26 |
27 Do not search for any character case mappings that cannot possibly | 27 Do not search for any character case mappings that cannot possibly |
28 occur in the buffer, given the buffer metadata about its | 28 occur in the buffer, given the buffer metadata about its |
29 contents. | 29 contents. |
30 | |
31 2008-01-19 Aidan Kehoe <kehoea@parhasard.net> | |
32 | |
33 * dired.c (Ffile_attributes): If bignums are available, use them | |
34 for the file size when necessary. If they are not, be clearer | |
35 about the check for whether the file size can fit in a Lisp | |
36 integer. | |
37 | |
38 2008-01-18 Jerry James <james@xemacs.org> | |
39 | |
40 * device-x.c (x_init_device): Don't write to path or read from | |
41 format when neither has been initialized. | |
42 | |
43 2008-01-16 Aidan Kehoe <kehoea@parhasard.net> | |
44 | |
45 * elhash.c (internal_hash): | |
46 Make short lists with the same contents in a different order hash | |
47 distinctly. Gives better performance for things like three-element | |
48 lists describing colours. Thank you Sebastian Freundt! | |
49 | |
50 2008-01-15 Aidan Kehoe <kehoea@parhasard.net> | |
51 | |
52 * print.c (prin1_to_string): New. | |
53 The guts of Fprin1_to_string, without resetting | |
54 Vprint_gensym_alist. | |
55 (Fprin1_to_string): | |
56 Call prin1_to_string, wrapped with RESET_PRINT_GENSYM calls. | |
57 * doprnt.c (emacs_doprnt_1): | |
58 Call prin1_to_string, not Fprin1_to_string (dos veces). Avoids an | |
59 inappropriate reset of print-gensym-alist. | |
60 | |
61 2008-01-12 Aidan Kehoe <kehoea@parhasard.net> | |
62 | |
63 * rangetab.c (Fmap_range_table): | |
64 Clarify docstring. (If FUNCTION doesn't touch any range-table | |
65 entry, things will also be correct.) | |
66 | |
67 2008-01-09 Aidan Kehoe <kehoea@parhasard.net> | |
68 | |
69 * config.h.in: | |
70 Check that __STDC_VERSION__ is defined before examining its | |
71 value. Eliminates a Cygwin warning. | |
72 | |
73 2008-01-08 Aidan Kehoe <kehoea@parhasard.net> | |
74 | |
75 * text.h (MAX_XETCHAR_SIZE): Remove, eliminating a redefinition | |
76 warning on Win32. | |
77 * dumper.c (pdump_load): | |
78 Don't use PATH_MAX_EXTERNAL, instead allocate enough for the path | |
79 + DUMP_SLACK (space for .dmp and version information), already | |
80 used on Win32 and #defined to be 100. | |
81 | |
82 2008-01-08 Jerry James <james@xemacs.org> | |
83 | |
84 * config.h.in (INLINE_HEADER): adapt to C99 inline semantics. | |
85 | |
86 2008-01-07 Jerry James <james@xemacs.org> | |
87 | |
88 * xemacs.def.in.in: Clarify the copyright and license. | |
89 | |
90 2008-01-03 Aidan Kehoe <kehoea@parhasard.net> | |
91 | |
92 * fileio.c (Fmake_temp_name): Correct the comment to cross | |
93 reference to make-temp-file, and not to this function. | |
94 | |
95 2008-01-03 Stephen J. Turnbull <stephen@xemacs.org> | |
96 | |
97 * doc.c (Fbuilt_in_symbol_file): Improve style. | |
98 | |
99 2008-01-02 Aidan Kehoe <kehoea@parhasard.net> | |
100 | |
101 * emacs.c (main_1): | |
102 Call the new vars_of_console_gtk function. | |
103 * console-gtk.c (vars_of_console_gtk): New. | |
104 * console-gtk.c (gtk_perhaps_init_unseen_key_defaults): | |
105 Correct the initialisation of the hash table, on the model of the | |
106 MSW and TTY builds. | |
107 | |
108 2008-01-02 Aidan Kehoe <kehoea@parhasard.net> | |
109 | |
110 * doc.c (Fbuilt_in_symbol_file): | |
111 Don't check is fun zero in the condition, check that it's not | |
112 nil. Fixes the union build; thank you Stephen. | |
113 | |
114 2008-01-02 Mike Sperber <mike@xemacs.org> | |
115 | |
116 * window.c (set_window_pixsize): Factor in the modeline when | |
117 looking at window_min_width. Remove obsolete comment about | |
118 incorrect use of `default_face_height_and_width'. | |
119 (change_window_height): Remove obsolete comment about | |
120 incorrect use of `default_face_height_and_width'. | |
121 | |
122 2007-12-30 Aidan Kehoe <kehoea@parhasard.net> | |
123 | |
124 * doc.c (Fbuilt_in_symbol_file): | |
125 Take a new TYPE argument, specifying whether the function or | |
126 variable definition of the symbol should be searched for. | |
127 Handle built-in macros correctly. | |
128 | |
129 2007-12-24 Aidan Kehoe <kehoea@parhasard.net> | |
130 | |
131 * event-xlike-inc.c (x_keysym_to_character): | |
132 * event-xlike-inc.c (gtk_keysym_to_character): | |
133 Unify the typed character if possible, following the current value | |
134 for the unicode precedence list. | |
30 | 135 |
31 2007-12-24 Aidan Kehoe <kehoea@parhasard.net> | 136 2007-12-24 Aidan Kehoe <kehoea@parhasard.net> |
32 | 137 |
33 * symbols.c (Fintern_soft): | 138 * symbols.c (Fintern_soft): |
34 Provide a new optional third argument, DEFAULT, for those who want | 139 Provide a new optional third argument, DEFAULT, for those who want |