]> git.eshelyaron.com Git - emacs.git/commitdiff
Add xfree missed from last change.
authorDave Love <fx@gnu.org>
Tue, 20 Jun 2000 13:30:26 +0000 (13:30 +0000)
committerDave Love <fx@gnu.org>
Tue, 20 Jun 2000 13:30:26 +0000 (13:30 +0000)
src/ChangeLog
src/lisp.h

index 6eb18889c3abbaa40d765c659789ab717a088d6c..6933cd190e3032810909b9adec510e12e8ca7bb0 100644 (file)
@@ -1,3 +1,23 @@
+2000-06-20  Dave Love  <fx@gnu.org>
+
+       * keyboard.h (poll_for_input_1): Declare.
+
+       * getloadavg.c: Don't define NLIST_STRUCT (handled by configure).
+
+       * alloc.c (xmalloc, xrealloc, xfree): Define using POINTER_TYPE.
+
+       * doprnt.c: Don't declare xmalloc, xrealloc.
+
+       * lisp.h (x_set_tool_bar_lines, free_frame_xic, compose_text)
+       (getenv, ctime, getwd): Removed.
+       (xmalloc, xrealloc, xfree): Declare using POINTER_TYPE.
+
+       * xterm.h: Remove duplicate prototypes.  Declare free_frame_xic,
+       x_set_tool_bar_lines.
+
+       * config.in: Add HAVE_GETWD.  Move some definitions above
+       machine/system includes.
+
 2000-06-20  Kenichi Handa  <handa@etl.go.jp>
 
        * s/bsd386.h (HAVE_GETLOADAVG): Define it as 1.
index cdaad4f1cf61181c41aac535ea0683c3b0727075..a079771d833a7b6a514ecc7e9833a38498a4d1c7 100644 (file)
@@ -2864,6 +2864,8 @@ extern int immediate_quit;            /* Nonzero means ^G can quit instantly */
 
 extern POINTER_TYPE *xmalloc P_ ((int));
 extern POINTER_TYPE *xrealloc P_ ((POINTER_TYPE *, int));
+extern void xfree P_ ((POINTER_TYPE *));
+
 extern char *xstrdup P_ ((char *));
 
 extern char *egetenv P_ ((char *));