aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDave Love2000-06-20 13:30:26 +0000
committerDave Love2000-06-20 13:30:26 +0000
commit074b6efe95b833a3aa475b99373d5bd7741fce8a (patch)
tree8a4ee4a89986c115c13287dc20f68684cdbe79ba /src
parenta47bf6480c1c4cd8530dda4766f4f83233a6b792 (diff)
downloademacs-074b6efe95b833a3aa475b99373d5bd7741fce8a.tar.gz
emacs-074b6efe95b833a3aa475b99373d5bd7741fce8a.zip
Add xfree missed from last change.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog20
-rw-r--r--src/lisp.h2
2 files changed, 22 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 6eb18889c3a..6933cd190e3 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,23 @@
12000-06-20 Dave Love <fx@gnu.org>
2
3 * keyboard.h (poll_for_input_1): Declare.
4
5 * getloadavg.c: Don't define NLIST_STRUCT (handled by configure).
6
7 * alloc.c (xmalloc, xrealloc, xfree): Define using POINTER_TYPE.
8
9 * doprnt.c: Don't declare xmalloc, xrealloc.
10
11 * lisp.h (x_set_tool_bar_lines, free_frame_xic, compose_text)
12 (getenv, ctime, getwd): Removed.
13 (xmalloc, xrealloc, xfree): Declare using POINTER_TYPE.
14
15 * xterm.h: Remove duplicate prototypes. Declare free_frame_xic,
16 x_set_tool_bar_lines.
17
18 * config.in: Add HAVE_GETWD. Move some definitions above
19 machine/system includes.
20
12000-06-20 Kenichi Handa <handa@etl.go.jp> 212000-06-20 Kenichi Handa <handa@etl.go.jp>
2 22
3 * s/bsd386.h (HAVE_GETLOADAVG): Define it as 1. 23 * s/bsd386.h (HAVE_GETLOADAVG): Define it as 1.
diff --git a/src/lisp.h b/src/lisp.h
index cdaad4f1cf6..a079771d833 100644
--- a/src/lisp.h
+++ b/src/lisp.h
@@ -2864,6 +2864,8 @@ extern int immediate_quit; /* Nonzero means ^G can quit instantly */
2864 2864
2865extern POINTER_TYPE *xmalloc P_ ((int)); 2865extern POINTER_TYPE *xmalloc P_ ((int));
2866extern POINTER_TYPE *xrealloc P_ ((POINTER_TYPE *, int)); 2866extern POINTER_TYPE *xrealloc P_ ((POINTER_TYPE *, int));
2867extern void xfree P_ ((POINTER_TYPE *));
2868
2867extern char *xstrdup P_ ((char *)); 2869extern char *xstrdup P_ ((char *));
2868 2870
2869extern char *egetenv P_ ((char *)); 2871extern char *egetenv P_ ((char *));