comparison src/ChangeLog @ 1726:a8d8f419b459

[xemacs-hg @ 2003-09-30 15:26:34 by james] Add type information to xfree to avoid alias creation.
author james
date Tue, 30 Sep 2003 15:27:01 +0000
parents 4af49f9a7a5c
children 7c80b06e433f
comparison
equal deleted inserted replaced
1725:7ff8f4d70aec 1726:a8d8f419b459
1 2003-09-25 Jerry James <james@xemacs.org>
2
3 * alloc.c (xfree_1): Use this name even when not error checking.
4 * device-tty.c (free_tty_device_struct): Use xfree type parameter,
5 but error-checking version alters the original, not a local copy.
6 * fileio.c (Ffile_name_directory): Don't xfree alloca'd memory;
7 this is in an #if 0, but fix it anyway just in case.
8 * lisp.h: Add a type parameter to the xfree declaration, and
9 remove the alias when ERROR_CHECK_MALLOC is defined.
10 Fix 2 incorrect comments pointing to structure declarations.
11 * tparam.c: Remove unused free macro, and duplicate xmalloc and
12 xrealloc declarations.
13 * ui-gtk.c (CONVERT_RETVAL): Add type parameter to use of xfree,
14 and fix some minor whitespace problems.
15 * xemacs.def.in.in: Unconditionally export xfree_1
16
17 * alloc.c:
18 * alloca.c:
19 * buffer.c:
20 * buffer.h:
21 * console-stream.c:
22 * console-tty.c:
23 * device-gtk.c:
24 * device-msw.c:
25 * device-x.c:
26 * dialog-msw.c:
27 * dialog-x.c:
28 * dired-msw.c:
29 * dired.c:
30 * doc.c:
31 * dumper.c:
32 * dynarr.c:
33 * editfns.c:
34 * elhash.c:
35 * emacs.c:
36 * emodules.c:
37 * eval.c:
38 * event-Xt.c:
39 * event-gtk.c:
40 * event-msw.c:
41 * event-stream.c:
42 * extents.c:
43 * file-coding.c:
44 * fileio.c:
45 * filelock.c:
46 * frame-gtk.c:
47 * frame-msw.c:
48 * frame-x.c:
49 * frame.c:
50 * gccache-gtk.c:
51 * glyphs-eimage.c:
52 * glyphs-gtk.c:
53 * glyphs-msw.c:
54 * glyphs-x.c:
55 * gui-x.c:
56 * hash.c:
57 * hftctl.c:
58 * imgproc.c:
59 * insdel.c:
60 * intl-win32.c:
61 * keymap.c:
62 * lstream.c:
63 * mule-coding.c:
64 * nt.c:
65 * ntplay.c:
66 * objects-gtk.c:
67 * objects-msw.c:
68 * objects-tty.c:
69 * objects-x.c:
70 * process.c:
71 * redisplay.c:
72 * regex.c:
73 * scrollbar-gtk.c:
74 * scrollbar-msw.c:
75 * scrollbar-x.c:
76 * select-gtk.c:
77 * select-msw.c:
78 * select-x.c:
79 * specifier.c:
80 * syntax.c:
81 * sysdep.c:
82 * termcap.c:
83 * tests.c:
84 * text.c:
85 * text.h:
86 * toolbar-msw.c:
87 * unicode.c:
88 * xgccache.c:
89 Add type parameter to uses of xfree.
90
1 2003-09-27 Stephen J. Turnbull <stephen@xemacs.org> 91 2003-09-27 Stephen J. Turnbull <stephen@xemacs.org>
2 92
3 * search.c (trivial_regexp_p): Regexps containing "\{" are 93 * search.c (trivial_regexp_p): Regexps containing "\{" are
4 nontrivial. Thanks to Manfred Bartz for reporting the bug and 94 nontrivial. Thanks to Manfred Bartz for reporting the bug and
5 Stefan Monnier for suggesting a diagnosis. 95 Stefan Monnier for suggesting a diagnosis.