Mercurial > hg > xemacs-beta
comparison src/ChangeLog @ 801:2b676dc88c66
[xemacs-hg @ 2002-04-01 03:58:02 by ben]
bug fixes (e.g. ballooning on X windows)
Makefile.in.in: Try to make the Makefile notice if its source Makefile.in.in is
changed, and regenerate and run itself.
Use a bigger default SHEAP_ADJUSTMENT on Cygwin; otherwise you
can't compile under Mule if a Lisp file has changed. (can't run
temacs)
TODO.ben-mule-21-5: update.
mule/mule-cmds.el: Hash the result of mswindows-get-language-environment-from-locale,
since it's very expensive (and causes huge ballooning of memory
under X Windows, since it's called from x-get-resource).
cl-extra.el, code-files.el, files.el, simple.el, subr.el, x-faces.el: Create new string-equal-ignore-case, based on built-in
compare-strings -- compare strings ignoring case without the need
to generate garbage by calling downcase. Use it in equalp and
elsewhere.
alloc.c, bytecode.c, chartab.c, data.c, elhash.c, emacs.c, eval.c, event-Xt.c, event-unixoid.c, extents.c, file-coding.c, fileio.c, fns.c, glyphs.c, gutter.c, lisp-union.h, lisp.h, mule-charset.c, nt.c, process-unix.c, process.c, specifier.c, symbols.c, sysdep.c, sysdep.h, text.c, toolbar.c: Try to implement GC triggering based on percentage of total memory
usage. Not currently activated (percentage set to 0) because not
quite working. Add `memory-usage' primitive to return XEmacs'
idea of its memory usage.
Add primitive compare-strings, compatible with FSF 21.1 -- can
compare any part of two strings, optionally ignoring case.
Improve qxe() functions in text.c for text comparison.
Use RETURN_NOT_REACHED to try to avoid warnings about unreachable
code.
Add volatile_make_int() to fix warning in unix_send_process().
author | ben |
---|---|
date | Mon, 01 Apr 2002 03:59:04 +0000 |
parents | a5954632b187 |
children | 19dfb459d51a |
comparison
equal
deleted
inserted
replaced
800:a5954632b187 | 801:2b676dc88c66 |
---|---|
1 2002-03-31 Ben Wing <ben@xemacs.org> | |
2 | |
3 * alloc.c: | |
4 * alloc.c (INCREMENT_CONS_COUNTER): | |
5 * alloc.c (xmalloc): | |
6 * alloc.c (xcalloc): | |
7 * alloc.c (xrealloc): | |
8 * alloc.c (Fmemory_limit): | |
9 * alloc.c (Fmemory_usage): | |
10 * alloc.c (common_init_alloc_once_early): | |
11 * alloc.c (syms_of_alloc): | |
12 * alloc.c (vars_of_alloc): | |
13 * bytecode.c: | |
14 * bytecode.c (Ffetch_bytecode): | |
15 * chartab.c (symbol_to_char_table_type): | |
16 * chartab.c (Fget_range_char_table): | |
17 * chartab.c (check_valid_char_table_value): | |
18 * data.c (Faref): | |
19 * data.c (Faset): | |
20 * data.c (Fquo): | |
21 * data.c (Fmod): | |
22 * data.c (decode_weak_list_type): | |
23 * data.c (encode_weak_list_type): | |
24 * elhash.c (decode_hash_table_weakness): | |
25 * elhash.c (decode_hash_table_test): | |
26 * emacs.c (main): | |
27 * eval.c: | |
28 * eval.c (Feval): | |
29 * eval.c (Ffuncall): | |
30 * event-Xt.c (x_to_emacs_keysym): | |
31 * event-unixoid.c: | |
32 * event-unixoid.c (poll_fds_for_input): | |
33 * extents.c (decode_extent_at_flag): | |
34 * extents.c (symbol_to_glyph_layout): | |
35 * file-coding.c (symbol_to_eol_type): | |
36 * file-coding.c (Fcoding_system_aliasee): | |
37 * file-coding.c (coding_category_symbol_to_id): | |
38 * fileio.c (report_file_type_error): | |
39 * fileio.c (Fsubstitute_in_file_name): | |
40 * fns.c: | |
41 * fns.c (Fcompare_strings): | |
42 * fns.c (internal_equalp): | |
43 * fns.c (syms_of_fns): | |
44 * glyphs.c (process_image_string_instantiator): | |
45 * gutter.c (decode_gutter_position): | |
46 * lisp-union.h: | |
47 * lisp.h: | |
48 * lisp.h (RETURN_NOT_REACHED): | |
49 * mule-charset.c (Fcharset_property): | |
50 * nt.c (mswindows_stat): | |
51 * process-unix.c (unix_create_process): | |
52 * process.c (decode_signal): | |
53 * specifier.c (decode_locale_type): | |
54 * specifier.c (decode_how_to_add_specification): | |
55 * symbols.c (decode_magic_handler_type): | |
56 * symbols.c (handler_type_from_function_symbol): | |
57 * sysdep.c: | |
58 * sysdep.c (start_of_data): | |
59 * sysdep.c (total_data_usage): | |
60 * sysdep.h (total_data_usage): | |
61 * text.c: | |
62 * text.c (qxestrncasecmp_i18n): | |
63 * text.c (qxememcmp4): | |
64 * text.c (qxememcasecmp4): | |
65 * text.c (qxetextcmp): | |
66 * text.c (qxetextcmp_matching): | |
67 * text.c (qxetextcasecmp): | |
68 * text.c (qxetextcasecmp_matching): | |
69 * text.c (lisp_strcasecmp_i18n): | |
70 * text.c (eicmp_1): | |
71 * toolbar.c (decode_toolbar_position): | |
72 * toolbar.c (Fset_default_toolbar_position): | |
73 Try to implement GC triggering based on percentage of total memory | |
74 usage. Not currently activated (percentage set to 0) because not | |
75 quite working. Add `memory-usage' primitive to return XEmacs' | |
76 idea of its memory usage. | |
77 | |
78 Add primitive compare-strings, compatible with FSF 21.1 -- can | |
79 compare any part of two strings, optionally ignoring case. | |
80 Improve qxe() functions in text.c for text comparison. | |
81 | |
82 Use RETURN_NOT_REACHED to try to avoid warnings about unreachable | |
83 code. | |
84 | |
85 Add volatile_make_int() to fix warning in unix_send_process(). | |
86 | |
87 | |
1 2002-03-31 Ben Wing <ben@xemacs.org> | 88 2002-03-31 Ben Wing <ben@xemacs.org> |
2 | 89 |
3 * s/windowsnt.h: | 90 * s/windowsnt.h: |
4 Use new ERROR_CHECK_ALL; not related to DEBUG_XEMACS. | 91 Use new ERROR_CHECK_ALL; not related to DEBUG_XEMACS. |
5 | 92 |