aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGerd Moellmann2000-03-30 09:36:27 +0000
committerGerd Moellmann2000-03-30 09:36:27 +0000
commit8e7af858e154c4676adc2ef1587f23928c743019 (patch)
treea3916e5354b53c488400290c80c771f14e5d8160 /src
parent96c1776c805bfa6d4786d2a9c7736226303b0b62 (diff)
downloademacs-8e7af858e154c4676adc2ef1587f23928c743019.tar.gz
emacs-8e7af858e154c4676adc2ef1587f23928c743019.zip
(xstrdup): Add prototype.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog16
-rw-r--r--src/lisp.h1
2 files changed, 17 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 6bc687b6167..ed700166530 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,19 @@
12000-03-30 Gerd Moellmann <gerd@gnu.org>
2
3 * xfns.c (free_image_cache): Free the cache structure itself
4 last, after all its members have been freed.
5
6 * lisp.h (xstrdup): Add prototype.
7
8 * alloc.c (xstrdup): Moved here from xfaces.c.
9 (allocating_for_lisp): Variable removed.
10 (lisp_malloc): Block input around the calls to malloc and
11 mem_insert.
12
13 * xfaces.c (realize_tty_face): Use find_symbol_value instead
14 of Fsymbol_value.
15 (xstrdup): Moved to alloc.c.
16
12000-03-29 Ken Raeburn <raeburn@gnu.org> 172000-03-29 Ken Raeburn <raeburn@gnu.org>
2 18
3 * scroll.c (CHECK_BOUNDS): Renamed from CHECK. 19 * scroll.c (CHECK_BOUNDS): Renamed from CHECK.
diff --git a/src/lisp.h b/src/lisp.h
index 0e1cfff61ab..54a3bdd5855 100644
--- a/src/lisp.h
+++ b/src/lisp.h
@@ -2857,6 +2857,7 @@ extern int immediate_quit; /* Nonzero means ^G can quit instantly */
2857extern char *getenv (), *ctime (), *getwd (); 2857extern char *getenv (), *ctime (), *getwd ();
2858extern long *xmalloc (), *xrealloc (); 2858extern long *xmalloc (), *xrealloc ();
2859extern void xfree (); 2859extern void xfree ();
2860extern char *xstrdup P_ ((char *));
2860 2861
2861extern char *egetenv P_ ((char *)); 2862extern char *egetenv P_ ((char *));
2862 2863