diff options
| author | Dan Nicolaescu | 2010-10-03 06:59:56 -0700 |
|---|---|---|
| committer | Dan Nicolaescu | 2010-10-03 06:59:56 -0700 |
| commit | dd5ecd6bb5778143554b5f82cd05bab3234bc5e8 (patch) | |
| tree | 9238f45cacb7ecca7515d1161ef9ef7a6aa7f03a /src/ChangeLog | |
| parent | e1b69165cca0ba5012a54c249589d544247217c3 (diff) | |
| download | emacs-dd5ecd6bb5778143554b5f82cd05bab3234bc5e8.tar.gz emacs-dd5ecd6bb5778143554b5f82cd05bab3234bc5e8.zip | |
Remove unused arguments for unexec.
The third one is never used, and the last two are always passed as zero.
* src/emacs.c (unexec): Add declaration.
(Fdump_emacs): Only pass the first two arguments to unexec.
Simplify #ifdef.
* src/unexw32.c (unexec):
* src/unexsol.c (unexec):
* src/unexhp9k800.c (unexec):
* src/unexcw.c (unexec): Remove the last 3 arguments, unused.
* src/unexelf.c (unexec): Remove the last 3 arguments, unused.
(find_section): Use const.
* src/unexmacosx.c (unexec): Remove the last 3 arguments, unused.
(unexec_error): Declare it NO_RETURN.
* src/unexcoff.c (make_hdr): Assume bss_start is always zero, remove
it as an argument, remove data_start and entry_address arguments, unused.
(unexec): Remove bss_start, data_start and
entry_address arguments.
* src/unexaix.c (make_hdr): Assume bss_start is always zero, remove
it as an argument, remove data_start and entry_address arguments, unused.
(unexec): Remove bss_start, data_start and
entry_address arguments.
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 70ed07cb24e..2e1864b270e 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,27 @@ | |||
| 1 | 2010-10-03 Dan Nicolaescu <dann@ics.uci.edu> | ||
| 2 | |||
| 3 | Remove unused arguments for unexec. | ||
| 4 | The third one is never used, and the last two are always passed as zero. | ||
| 5 | * emacs.c (unexec): Add declaration. | ||
| 6 | (Fdump_emacs): Only pass the first two arguments to unexec. | ||
| 7 | Simplify #ifdef. | ||
| 8 | * unexw32.c (unexec): | ||
| 9 | * unexsol.c (unexec): | ||
| 10 | * unexhp9k800.c (unexec): | ||
| 11 | * unexcw.c (unexec): Remove the last 3 arguments, unused. | ||
| 12 | * unexelf.c (unexec): Remove the last 3 arguments, unused. | ||
| 13 | (find_section): Use const. | ||
| 14 | * unexmacosx.c (unexec): Remove the last 3 arguments, unused. | ||
| 15 | (unexec_error): Declare it NO_RETURN. | ||
| 16 | * unexcoff.c (make_hdr): Assume bss_start is always zero, remove | ||
| 17 | it as an argument, remove data_start and entry_address arguments, unused. | ||
| 18 | (unexec): Remove bss_start, data_start and | ||
| 19 | entry_address arguments. | ||
| 20 | * unexaix.c (make_hdr): Assume bss_start is always zero, remove | ||
| 21 | it as an argument, remove data_start and entry_address arguments, unused. | ||
| 22 | (unexec): Remove bss_start, data_start and | ||
| 23 | entry_address arguments. | ||
| 24 | |||
| 1 | 2010-10-03 Juanma Barranquero <lekktu@gmail.com> | 25 | 2010-10-03 Juanma Barranquero <lekktu@gmail.com> |
| 2 | 26 | ||
| 3 | * makefile.w32-in (TAGS, TAGS-LISP, TAGS-gmake): Add $(FONTOBJ). | 27 | * makefile.w32-in (TAGS, TAGS-LISP, TAGS-gmake): Add $(FONTOBJ). |