diff options
| author | Paul Eggert | 2011-07-04 22:27:49 -0700 |
|---|---|---|
| committer | Paul Eggert | 2011-07-04 22:27:49 -0700 |
| commit | 9cfdb3ec08672f13088ebd133bbc794c04a66b05 (patch) | |
| tree | 0e0b851de11b990831c7a0fc39ff97f00edfad93 /src/ChangeLog | |
| parent | 6089c5670b18a02fc2caca3e665d2bb7799dc4c8 (diff) | |
| download | emacs-9cfdb3ec08672f13088ebd133bbc794c04a66b05.tar.gz emacs-9cfdb3ec08672f13088ebd133bbc794c04a66b05.zip | |
[ChangeLog]
Assume support for memcmp, memcpy, memmove, memset.
This simplifies the code a bit. All current platforms have these,
as they are required for C89. If this turns into a problem we
can add the gnulib modules for these (a 1-line change to Makefile.in).
* configure.in: Don't check for memcmp, memcpy, memmove, memset.
[lib-src/ChangeLog]
Assume support for memcmp, memcpy, memmove, memset.
* etags.c (absolute_filename): Assume memmove exists.
[src/ChangeLog]
Assume support for memcmp, memcpy, memmove, memset.
* lisp.h, sysdep.c (memcmp, memcpy, memmove, memset):
* regex.c (memcmp, memcpy):
Remove; we assume C89 now.
* gmalloc.c (memcpy, memset, memmove): Remove; we assume C89 now.
(__malloc_safe_bcopy): Remove; no longer needed.
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index e4702b4316b..22d70bf54eb 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,5 +1,13 @@ | |||
| 1 | 2011-07-05 Paul Eggert <eggert@cs.ucla.edu> | 1 | 2011-07-05 Paul Eggert <eggert@cs.ucla.edu> |
| 2 | 2 | ||
| 3 | Assume support for memcmp, memcpy, memmove, memset. | ||
| 4 | * lisp.h, sysdep.c (memcmp, memcpy, memmove, memset): | ||
| 5 | * regex.c (memcmp, memcpy): | ||
| 6 | Remove; we assume C89 now. | ||
| 7 | |||
| 8 | * gmalloc.c (memcpy, memset, memmove): Remove; we assume C89 now. | ||
| 9 | (__malloc_safe_bcopy): Remove; no longer needed. | ||
| 10 | |||
| 3 | * lisp.h (struct vectorlike_header, struct Lisp_Subr): Signed sizes. | 11 | * lisp.h (struct vectorlike_header, struct Lisp_Subr): Signed sizes. |
| 4 | Use EMACS_INT, not EMACS_UINT, for sizes. The code works equally | 12 | Use EMACS_INT, not EMACS_UINT, for sizes. The code works equally |
| 5 | well either way, and we prefer signed to unsigned. | 13 | well either way, and we prefer signed to unsigned. |