diff options
| author | Dan Nicolaescu | 2010-07-27 01:02:44 -0700 |
|---|---|---|
| committer | Dan Nicolaescu | 2010-07-27 01:02:44 -0700 |
| commit | 6079970319ac22f18c341d34da439e3e2e021e49 (patch) | |
| tree | 22bb73c0261b938b4fc07e67821beda28057e40e /src | |
| parent | 37254dc10a10a40205644b670b20e757aa026343 (diff) | |
| download | emacs-6079970319ac22f18c341d34da439e3e2e021e49.tar.gz emacs-6079970319ac22f18c341d34da439e3e2e021e49.zip | |
* src/emacs.c (Fkill_emacs): Remove return statement.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 2 | ||||
| -rw-r--r-- | src/emacs.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 7cdbb5fc10a..4c4ac5f8725 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,5 +1,7 @@ | |||
| 1 | 2010-07-27 Dan Nicolaescu <dann@ics.uci.edu> | 1 | 2010-07-27 Dan Nicolaescu <dann@ics.uci.edu> |
| 2 | 2 | ||
| 3 | * emacs.c (Fkill_emacs): Remove return statement. | ||
| 4 | |||
| 3 | * term.c (Qspace, QCalign_to, QCwidth): Remove declarations. | 5 | * term.c (Qspace, QCalign_to, QCwidth): Remove declarations. |
| 4 | (encode_terminal_code, produce_composite_glyph): Remove unused variables. | 6 | (encode_terminal_code, produce_composite_glyph): Remove unused variables. |
| 5 | (set_tty_color_mode, term_mouse_highlight, term_get_fkeys): Remove | 7 | (set_tty_color_mode, term_mouse_highlight, term_get_fkeys): Remove |
diff --git a/src/emacs.c b/src/emacs.c index 90a6e278b93..c9a4ae5d0db 100644 --- a/src/emacs.c +++ b/src/emacs.c | |||
| @@ -2093,8 +2093,6 @@ all of which are called before Emacs is actually killed. */) | |||
| 2093 | unlink (SDATA (Vauto_save_list_file_name)); | 2093 | unlink (SDATA (Vauto_save_list_file_name)); |
| 2094 | 2094 | ||
| 2095 | exit (INTEGERP (arg) ? XINT (arg) : EXIT_SUCCESS); | 2095 | exit (INTEGERP (arg) ? XINT (arg) : EXIT_SUCCESS); |
| 2096 | /* NOTREACHED */ | ||
| 2097 | return Qnil; | ||
| 2098 | } | 2096 | } |
| 2099 | 2097 | ||
| 2100 | 2098 | ||