Mercurial > hg > xemacs-beta
comparison src/ChangeLog @ 1333:1b0339b048ce
[xemacs-hg @ 2003-03-02 09:38:37 by ben]
To: xemacs-patches@xemacs.org
PROBLEMS: Include nt/PROBLEMS and update. Add note about incremental
linking badness.
cmdloop.el, custom.el, dumped-lisp.el, files.el, keydefs.el, keymap.el, lisp-mode.el, make-docfile.el, replace.el, simple.el, subr.el, view-less.el, wid-edit.el: Lots of syncing with FSF 21.2.
Use if-fboundp in wid-edit.el.
New file newcomment.el from FSF.
internals/internals.texi: Fix typo.
(Build-Time Dependencies): New node.
PROBLEMS: Delete.
config.inc.samp, xemacs.mak: Eliminate HAVE_VC6, use SUPPORT_EDIT_AND_CONTINUE in its place.
No incremental linking unless SUPPORT_EDIT_AND_CONTINUE, since it
can cause nasty crashes in pdump. Put warnings about this in
config.inc.samp. Report the full compile flags used for src
and lib-src in the Installation output.
alloc.c, lisp.h, ralloc.c, regex.c: Use ALLOCA() in regex.c to avoid excessive stack allocation.
Also fix subtle problem with REL_ALLOC() -- any call to malloc()
(direct or indirect) may relocate rel-alloced data, causing
buffer text to shift. After any such call, regex must update
all its pointers to such data. Add a system, when
ERROR_CHECK_MALLOC, whereby regex.c indicates all the places
it is prepared to handle malloc()/realloc()/free(), and any
calls anywhere in XEmacs outside of this will trigger an abort.
alloc.c, dialog-msw.c, eval.c, event-stream.c, general-slots.h, insdel.c, lisp.h, menubar-msw.c, menubar-x.c: Change *run_hook*_trapping_problems to take a warning class, not
a string. Factor out code to issue warnings, add flag to
call_trapping_problems() to postpone warning issue, and make
*run_hook*_trapping_problems issue their own warnings tailored
to the hook, postponed in the case of safe_run_hook_trapping_problems()
so that the appropriate message can be issued about resetting to
nil only when not `quit'. Make record_unwind_protect_restoring_int()
non-static.
dumper.c: Issue notes about incremental linking problems under Windows.
fileio.c: Mule-ize encrypt/decrypt-string code.
text.h: Spacing changes.
author | ben |
---|---|
date | Sun, 02 Mar 2003 09:38:54 +0000 |
parents | 4542b72c005e |
children | 01c57eb70ae9 |
comparison
equal
deleted
inserted
replaced
1332:6aa23bb3da6b | 1333:1b0339b048ce |
---|---|
1 2003-03-01 Ben Wing <ben@xemacs.org> | |
2 | |
3 * alloc.c: | |
4 * alloc.c (xmalloc): | |
5 * alloc.c (xcalloc): | |
6 * alloc.c (xrealloc): | |
7 * alloc.c (endif): | |
8 * lisp.h (ALLOCA): | |
9 * lisp.h (MALLOC_OR_ALLOCA): | |
10 * lisp.h (DO_REALLOC): | |
11 * ralloc.c: | |
12 * ralloc.c (REGEX_MALLOC_CHECK): | |
13 * ralloc.c (r_alloc): | |
14 * ralloc.c (r_alloc_free): | |
15 * ralloc.c (r_re_alloc): | |
16 * regex.c: | |
17 * regex.c (REGEX_ALLOCATE): | |
18 * regex.c (REGEX_REALLOCATE): | |
19 * regex.c (REGEX_ALLOCATE_STACK): | |
20 * regex.c (TALLOC): | |
21 * regex.c (INIT_FAIL_STACK): | |
22 * regex.c (PUSH_FAILURE_POINT): | |
23 * regex.c (EXTEND_BUFFER): | |
24 * regex.c (FREE_STACK_RETURN): | |
25 * regex.c (regex_compile): | |
26 * regex.c (re_compile_fastmap): | |
27 * regex.c (re_search_2): | |
28 * regex.c (FREE_VARIABLES): | |
29 * regex.c (re_match): | |
30 * regex.c (re_match_2): | |
31 * regex.c (re_match_2_internal): | |
32 * regex.c (re_comp): | |
33 * regex.c (regcomp): | |
34 * regex.c (regexec): | |
35 * regex.c (regfree): | |
36 Use ALLOCA() in regex.c to avoid excessive stack allocation. | |
37 Also fix subtle problem with REL_ALLOC() -- any call to malloc() | |
38 (direct or indirect) may relocate rel-alloced data, causing | |
39 buffer text to shift. After any such call, regex must update | |
40 all its pointers to such data. Add a system, when | |
41 ERROR_CHECK_MALLOC, whereby regex.c indicates all the places | |
42 it is prepared to handle malloc()/realloc()/free(), and any | |
43 calls anywhere in XEmacs outside of this will trigger an abort. | |
44 | |
45 * alloc.c (garbage_collect_1): | |
46 * dialog-msw.c: | |
47 * dialog-msw.c (dialog_proc): | |
48 * eval.c: | |
49 * eval.c (run_post_gc_hook): | |
50 * eval.c (flagged_a_squirmer): | |
51 * eval.c (issue_call_trapping_problems_warning): | |
52 * eval.c (call_trapping_problems): | |
53 * eval.c (run_hook_trapping_problems): | |
54 * eval.c (safe_run_hook_trapping_problems): | |
55 * eval.c (run_hook_with_args_in_buffer_trapping_problems): | |
56 * eval.c (run_hook_with_args_trapping_problems): | |
57 * eval.c (va_run_hook_with_args_trapping_problems): | |
58 * eval.c (va_run_hook_with_args_in_buffer_trapping_problems): | |
59 * eval.c (record_unwind_protect_restoring_int): | |
60 * event-stream.c (run_pre_idle_hook): | |
61 * event-stream.c (pre_command_hook): | |
62 * event-stream.c (post_command_hook): | |
63 * general-slots.h: | |
64 * insdel.c: | |
65 * insdel.c (signal_first_change): | |
66 * insdel.c (signal_before_change): | |
67 * insdel.c (signal_after_change): | |
68 * lisp.h (POSTPONE_WARNING_ISSUE): | |
69 * lisp.h: | |
70 * menubar-msw.c: | |
71 * menubar-msw.c (unsafe_handle_wm_initmenu_1): | |
72 * menubar-x.c (pre_activate_callback): | |
73 Change *run_hook*_trapping_problems to take a warning class, not | |
74 a string. Factor out code to issue warnings, add flag to | |
75 call_trapping_problems() to postpone warning issue, and make | |
76 *run_hook*_trapping_problems issue their own warnings tailored | |
77 to the hook, postponed in the case of safe_run_hook_trapping_problems() | |
78 so that the appropriate message can be issued about resetting to | |
79 nil only when not `quit'. Make record_unwind_protect_restoring_int() | |
80 non-static. | |
81 | |
82 * dumper.c: | |
83 * dumper.c (pdump_unsupported_dump_type): | |
84 * dumper.c (pdump_register_sub): | |
85 * dumper.c (pdump_store_new_pointer_offsets): | |
86 * dumper.c (pdump_reloc_one): | |
87 * dumper.c (pdump_dump_root_struct_ptrs): | |
88 Issue notes about incremental linking problems under Windows. | |
89 | |
90 * fileio.c: | |
91 * fileio.c (barf_or_query_if_file_exists): | |
92 * fileio.c (Fsysnetunam): | |
93 * fileio.c (Fencrypt_string): | |
94 * fileio.c (Fdecrypt_string): | |
95 * fileio.c (Fdo_auto_save): | |
96 Mule-ize encrypt/decrypt-string code. | |
97 | |
98 * text.h (DEC_IBYTEPTR): | |
99 * text.h (EI_ALLOC): | |
100 * text.h (eicpy_lstr): | |
101 * text.h (eicpy_raw_fmt): | |
102 * text.h (eicpy_ch): | |
103 * text.h (eicat_ch): | |
104 * text.h (eisub_ei): | |
105 * text.h (eisub_ch): | |
106 * text.h (eito_external): | |
107 * text.h (EI_CASECHANGE): | |
108 Spacing changes. | |
109 | |
1 2003-02-28 Ben Wing <ben@xemacs.org> | 110 2003-02-28 Ben Wing <ben@xemacs.org> |
2 | 111 |
3 * m/acorn.h: | 112 * m/acorn.h: |
4 * m/alliant-2800.h (UNEXEC): | 113 * m/alliant-2800.h (UNEXEC): |
5 * m/alliant.h: | 114 * m/alliant.h: |