aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog9
-rw-r--r--src/ChangeLog18
2 files changed, 26 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 504f1477670..54d733a4ecc 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,12 @@
12000-08-05 Gerd Moellmann <gerd@gnu.org>
2
3 * pcvs.el (require): Require `cl' during compilation, only.
4
5 * emacs-lisp/cl.el (first, ..., tenth): Make them macros.
6 (toplevel): Remove `remq' and `remove' from autoloads.
7 (cl-fake-autoloads): New variable. If set, arrange for an error
8 when CL functions etc. are autoloaded.
9
12000-08-04 Eli Zaretskii <eliz@is.elta.co.il> 102000-08-04 Eli Zaretskii <eliz@is.elta.co.il>
2 11
3 * play/zone.el (zone, zone-pgm-stress): Don't use window-system. 12 * play/zone.el (zone, zone-pgm-stress): Don't use window-system.
diff --git a/src/ChangeLog b/src/ChangeLog
index 73c682ee27e..5caced48c41 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,9 +1,25 @@
12000-08-05 Gerd Moellmann <gerd@gnu.org> 12000-08-05 Gerd Moellmann <gerd@gnu.org>
2 2
3 * xmenu.c (popup_get_selection): Use xfree instead of free.
4
5 * fileio.c (Finsert_file_contents): Use xfree instead of free.
6
7 * editfns.c (Ftranspose_regions): Use xfree instead of free.
8
9 * callproc.c (child_setup): Use xfree instead of free.
10
11 * sysdep.c (opendir, GetTempDirName, run_mac_command): Use xmalloc
12 instead of malloc.
13 (run_mac_command, closedir): Use `xfree' instead of `free'.
14
15 * keymap.c (current_minor_maps): Use xmalloc instead of malloc.
16
17 * eval.c (error): Use xfree instead of free.
18
3 * xfaces.c, xfns.c, w32fns.c: Replace `illegal' with `invalid'. 19 * xfaces.c, xfns.c, w32fns.c: Replace `illegal' with `invalid'.
4 20
5 * fns.c: Replace `illegal' with `invalid'. 21 * fns.c: Replace `illegal' with `invalid'.
6 (Fmake_hash_table, amke_hash_table): Allow table size of 0. 22 (Fmake_hash_table, make_hash_table): Allow table size of 0.
7 23
82000-08-05 Kenichi Handa <handa@etl.go.jp> 242000-08-05 Kenichi Handa <handa@etl.go.jp>
9 25