diff options
| author | Gerd Moellmann | 2000-03-30 09:36:27 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 2000-03-30 09:36:27 +0000 |
| commit | 8e7af858e154c4676adc2ef1587f23928c743019 (patch) | |
| tree | a3916e5354b53c488400290c80c771f14e5d8160 /src | |
| parent | 96c1776c805bfa6d4786d2a9c7736226303b0b62 (diff) | |
| download | emacs-8e7af858e154c4676adc2ef1587f23928c743019.tar.gz emacs-8e7af858e154c4676adc2ef1587f23928c743019.zip | |
(xstrdup): Add prototype.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 16 | ||||
| -rw-r--r-- | src/lisp.h | 1 |
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 @@ | |||
| 1 | 2000-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 | |||
| 1 | 2000-03-29 Ken Raeburn <raeburn@gnu.org> | 17 | 2000-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 */ | |||
| 2857 | extern char *getenv (), *ctime (), *getwd (); | 2857 | extern char *getenv (), *ctime (), *getwd (); |
| 2858 | extern long *xmalloc (), *xrealloc (); | 2858 | extern long *xmalloc (), *xrealloc (); |
| 2859 | extern void xfree (); | 2859 | extern void xfree (); |
| 2860 | extern char *xstrdup P_ ((char *)); | ||
| 2860 | 2861 | ||
| 2861 | extern char *egetenv P_ ((char *)); | 2862 | extern char *egetenv P_ ((char *)); |
| 2862 | 2863 | ||