]> git.eshelyaron.com Git - emacs.git/commitdiff
* emacs.c (main): Fix syntax error.
authorJan Djärv <jan.h.d@swipnet.se>
Wed, 10 Jul 2013 11:27:15 +0000 (13:27 +0200)
committerJan Djärv <jan.h.d@swipnet.se>
Wed, 10 Jul 2013 11:27:15 +0000 (13:27 +0200)
src/ChangeLog
src/emacs.c

index 049c917edddcfadc716d9975a197017b1e1d2eab..dcd7c13b00f1a1900e5ff52fbfb005a5c53e35aa 100644 (file)
@@ -1,3 +1,7 @@
+2013-07-10  Jan Djärv  <jan.h.d@swipnet.se>
+
+       * emacs.c (main): Fix syntax error.
+
 2013-07-10  Paul Eggert  <eggert@cs.ucla.edu>
 
        Timestamp fixes for undo (Bug#14824).
index ee72095f705072407bd44a391a177c7b909876e0..7c0ddf97a0151a9c0ebf512ec5dece09172ccd05 100644 (file)
@@ -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. */