aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDan Nicolaescu <[email protected]>2010-07-27 01:02:44 -0700
committerDan Nicolaescu <[email protected]>2010-07-27 01:02:44 -0700
commit6079970319ac22f18c341d34da439e3e2e021e49 (patch)
tree22bb73c0261b938b4fc07e67821beda28057e40e /src
parent37254dc10a10a40205644b670b20e757aa026343 (diff)
* src/emacs.c (Fkill_emacs): Remove return statement.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog2
-rw-r--r--src/emacs.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 7cdbb5fc10..4c4ac5f872 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,7 @@
2010-07-27 Dan Nicolaescu <[email protected]>
+ * 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
diff --git a/src/emacs.c b/src/emacs.c
index 90a6e278b9..c9a4ae5d0d 100644
--- a/src/emacs.c
+++ b/src/emacs.c
@@ -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;
}