1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-03-06 05:52:32 -08:00

* src/emacs.c (Fkill_emacs): Remove return statement.

This commit is contained in:
Dan Nicolaescu 2010-07-27 01:02:44 -07:00
parent 37254dc10a
commit 6079970319
2 changed files with 2 additions and 2 deletions

View file

@ -1,5 +1,7 @@
2010-07-27 Dan Nicolaescu <dann@ics.uci.edu>
* emacs.c (Fkill_emacs): Remove return statement.
* term.c (Qspace, QCalign_to, QCwidth): Remove declarations.
(encode_terminal_code, produce_composite_glyph): Remove unused variables.
(set_tty_color_mode, term_mouse_highlight, term_get_fkeys): Remove

View file

@ -2093,8 +2093,6 @@ all of which are called before Emacs is actually killed. */)
unlink (SDATA (Vauto_save_list_file_name));
exit (INTEGERP (arg) ? XINT (arg) : EXIT_SUCCESS);
/* NOTREACHED */
return Qnil;
}