From: Jan Djärv Date: Wed, 10 Jul 2013 11:27:15 +0000 (+0200) Subject: * emacs.c (main): Fix syntax error. X-Git-Tag: emacs-24.3.90~173^2^2~42^2~45^2~387^2~1859 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=29be4a5095e3169d5059e1f5033208a70c68ba77;p=emacs.git * emacs.c (main): Fix syntax error. --- diff --git a/src/ChangeLog b/src/ChangeLog index 049c917eddd..dcd7c13b00f 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2013-07-10 Jan Djärv + + * emacs.c (main): Fix syntax error. + 2013-07-10 Paul Eggert Timestamp fixes for undo (Bug#14824). diff --git a/src/emacs.c b/src/emacs.c index ee72095f705..7c0ddf97a01 100644 --- a/src/emacs.c +++ b/src/emacs.c @@ -1042,7 +1042,7 @@ Using an Emacs configured with --with-x-toolkit=lucid does not have this problem execvp (argv[0], argv); emacs_perror (argv[0]); - exit (errno == ENOENT : EXIT_ENOENT : EXIT_CANNOT_INVOKE); + exit (errno == ENOENT ? EXIT_ENOENT : EXIT_CANNOT_INVOKE); } /* In exec'd: parse special dname into pipe and name info. */