comparison src/ChangeLog @ 1123:37bdd24225ef

[xemacs-hg @ 2002-11-27 07:15:02 by ben] bug fixes, profiling debugging improvements configure.in: Check for GCC version and only use -Wpacked in v3. .cvsignore: Add .idb, .ilk for MS Windows VC++. cl-macs.el: Document better. cmdloop.el: Removed. Remove nonworking breakpoint-on-error now that debug-on-error works as documented. help.el: Extract out with-displaying-help-buffer into a more general mechanism. lib-complete.el: Support thunks in find-library-source-path. startup.el: Don't catch errors when noninteractive, because that makes stack traces from stack-trace-on-error useless. .cvsignore: Windows shit. alloc.c: Better redisplay-related assert. elhash.c: Comment change. eval.c: Don't generate large warning strings (e.g. backtraces) when they will be discarded. Implement debug-on-error as documented -- it will enter the debugger and crash when an uncaught signal happens noninteractively and we are --debug. Better redisplay-related asserts. frame-msw.c, frame.c, lisp.h, redisplay.c, scrollbar-gtk.c, scrollbar-x.c, signal.c, sysdep.c: Fix up documentation related to QUIT (which CANNOT garbage-collect under any circumstances), and to redisplay critical sections. lread.c: Add load-ignore-out-of-date-elc-files, load-always-display-messages, load-show-full-path-in-messages for more robust package compilation and debugging. profile.c: Overhaul profile code. Change format to include call count and be extensible for further info. Remove call-count-profile-table. Add set-profiling-info. See related profile.el changes (which SHOULD ABSOLUTELY be in the core! Get rid of xemacs-devel and xemacs-base packages *yesterday*!).
author ben
date Wed, 27 Nov 2002 07:15:36 +0000
parents 3bcd77d0bf93
children ccd0667b4764
comparison
equal deleted inserted replaced
1122:7abc2b15a990 1123:37bdd24225ef
1 2002-11-27 Ben Wing <ben@xemacs.org>
2
3 * alloc.c:
4 * alloc.c (garbage_collect_1):
5 Better redisplay-related assert.
6
7 * elhash.c (xhash_table): Comment change.
8
9 * eval.c:
10 * eval.c (signal_call_debugger):
11 * eval.c (throw_or_bomb_out):
12 * eval.c (check_proper_critical_section_gc_protection):
13 * eval.c (Fsignal):
14 * eval.c (Feval):
15 * eval.c (Ffuncall):
16 * eval.c (flagged_a_squirmer):
17 * eval.c (call_trapping_problems):
18 * eval.c (warning_will_be_discarded):
19 * eval.c (warn_when_safe_lispobj):
20 * eval.c (warn_when_safe):
21 * eval.c (vars_of_eval):
22 Don't generate large warning strings (e.g. backtraces) when they will
23 be discarded.
24
25 Implement debug-on-error as documented -- it will enter the
26 debugger and crash when an uncaught signal happens noninteractively
27 and we are --debug.
28
29 Better redisplay-related asserts.
30
31 * frame-msw.c (mswindows_init_frame_1):
32 * frame.c (enter_redisplay_critical_section):
33 * lisp.h:
34 * redisplay.c (redisplay_frame):
35 * scrollbar-gtk.c (gtk_update_frame_scrollbars):
36 * scrollbar-x.c (x_update_frame_scrollbars):
37 * signal.c (check_quit):
38 * sysdep.c:
39 * sysdep.c (qxe_interruptible_open):
40
41 Fix up documentation related to QUIT (which CANNOT garbage-collect
42 under any circumstances), and to redisplay critical sections.
43
44 * lread.c:
45 * lread.c (Fload_internal):
46 * lread.c (PRINT_LOADING_MESSAGE_1):
47 * lread.c (locate_file_open_or_access_file):
48 * lread.c (locate_file_in_directory_mapper):
49 * lread.c (vars_of_lread):
50 Add load-ignore-out-of-date-elc-files,
51 load-always-display-messages, load-show-full-path-in-messages for
52 more robust package compilation and debugging.
53
54 * profile.c:
55 * profile.c (create_call_count_profile_table):
56 * profile.c (profile_increase_call_count):
57 * profile.c (Fstart_profiling):
58 * profile.c (Fclear_profiling_info):
59 * profile.c (get_profiling_info_timing_maphash):
60 * profile.c (Fget_profiling_info):
61 * profile.c (set_profiling_info_timing_maphash):
62 * profile.c (Fset_profiling_info):
63 * profile.c (Fprofiling_active_p):
64 * profile.c (syms_of_profile):
65 * profile.c (vars_of_profile):
66 Overhaul profile code. Change format to include call count and be
67 extensible for further info. Remove call-count-profile-table.
68 Add set-profiling-info. See related profile.el changes (which
69 SHOULD ABSOLUTELY be in the core! Get rid of xemacs-devel and
70 xemacs-base packages *yesterday*!).
71
1 2002-11-22 Ben Wing <ben@xemacs.org> 72 2002-11-22 Ben Wing <ben@xemacs.org>
2 73
3 * fileio.c: Fix crashes due to incorrectly ported code from 74 * fileio.c: Fix crashes due to incorrectly ported code from
4 FSF. 75 FSF.
5 76