diff options
| author | Paul Eggert | 2012-05-21 08:36:54 -0700 |
|---|---|---|
| committer | Paul Eggert | 2012-05-21 08:36:54 -0700 |
| commit | 261cb4bb750143d8078bb27a343e0d9560b884df (patch) | |
| tree | 0d295abf946d52c178be2f7b95e85bfcc5fc63cc /ChangeLog | |
| parent | ff23cd9f452b6d2b5001a67d7b14e0af7f61b194 (diff) | |
| download | emacs-261cb4bb750143d8078bb27a343e0d9560b884df.tar.gz emacs-261cb4bb750143d8078bb27a343e0d9560b884df.zip | |
Assume C89 or later.
* configure.in (AC_C_PROTOTYPES, AC_C_VOLATILE, AC_C_CONST)
(POINTER_TYPE, PROTOTYPES): Remove.
* admin/CPP-DEFINES: Remove NULL, const.
* lib-src/etags.c (static, const): Remove macros.
(PTR): Remove; all uses replaced with void *. Omit needless casts.
* src/alloc.c, src/buffer.c, lisp.h: Replace POINTER_TYPE with void.
* alloc.c (overrun_check_malloc, overrun_check_realloc, xmalloc)
(xrealloc):
* buffer.c (mmap_free_1, mmap_enlarge): Omit needless casts.
* editfns.c, fns.c, gmalloc.c, insdel.c, sysdep.c, termcap.c (NULL):
* textprop.c, tparam.c (NULL): Remove.
* ralloc.c, vm-limit.c (POINTER): Assume void * works.
* regex.c (SIGN_EXTEND_CHAR): Assume signed char works.
* regex.h (_RE_ARGS): Remove. All uses rewritten to use prototypes.
* unexelf.c (ElfBitsW): Assume c89 preprocessor or better.
* xterm.c (input_signal_count): Assume volatile works.
Diffstat (limited to 'ChangeLog')
| -rw-r--r-- | ChangeLog | 14 |
1 files changed, 9 insertions, 5 deletions
| @@ -1,10 +1,9 @@ | |||
| 1 | 2012-05-21 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * configure.in (LEIM_INSTALLDIR): | ||
| 4 | Rename to leimdir, treat like lispdir. | ||
| 5 | |||
| 6 | 2012-05-21 Paul Eggert <eggert@cs.ucla.edu> | 1 | 2012-05-21 Paul Eggert <eggert@cs.ucla.edu> |
| 7 | 2 | ||
| 3 | Assume C89 or later. | ||
| 4 | * configure.in (AC_C_PROTOTYPES, AC_C_VOLATILE, AC_C_CONST) | ||
| 5 | (POINTER_TYPE, PROTOTYPES): Remove. | ||
| 6 | |||
| 8 | Make merging from gnulib a script, not a makefile action. | 7 | Make merging from gnulib a script, not a makefile action. |
| 9 | Putting it in a makefile has some problems with reflection, as | 8 | Putting it in a makefile has some problems with reflection, as |
| 10 | merging from gnulib updates 'configure', which can update the makefile. | 9 | merging from gnulib updates 'configure', which can update the makefile. |
| @@ -15,6 +14,11 @@ | |||
| 15 | 14 | ||
| 16 | 2012-05-21 Glenn Morris <rgm@gnu.org> | 15 | 2012-05-21 Glenn Morris <rgm@gnu.org> |
| 17 | 16 | ||
| 17 | * configure.in (LEIM_INSTALLDIR): | ||
| 18 | Rename to leimdir, treat like lispdir. | ||
| 19 | |||
| 20 | 2012-05-21 Glenn Morris <rgm@gnu.org> | ||
| 21 | |||
| 18 | * Makefile.in (install-arch-indep, install-doc, install-info) | 22 | * Makefile.in (install-arch-indep, install-doc, install-info) |
| 19 | (uninstall): Scrap superfluous subshells. | 23 | (uninstall): Scrap superfluous subshells. |
| 20 | 24 | ||