Mercurial > emacs
changeset 105094:7d1a89cec51a
* emacs.c (main) [HAVE_NS]: fix error printf in daemon case.
author | Adrian Robert <Adrian.B.Robert@gmail.com> |
---|---|
date | Fri, 18 Sep 2009 21:12:09 +0000 |
parents | fdf0cd460ea3 |
children | 4adac4895f0f |
files | src/ChangeLog src/emacs.c |
diffstat | 2 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/ChangeLog Fri Sep 18 18:48:38 2009 +0000 +++ b/src/ChangeLog Fri Sep 18 21:12:09 2009 +0000 @@ -2,7 +2,7 @@ * emacs.c (inhibit_x_resources): Update doc string for NS. (main) [HAVE_NS]: Don't process --no-init-file option. Remove - legacy code for -NXHost. + legacy code for -NXHost. Fix error printf in daemon case. * nsterm.h (ns_no_defaults): Remove.
--- a/src/emacs.c Fri Sep 18 18:48:38 2009 +0000 +++ b/src/emacs.c Fri Sep 18 21:12:09 2009 +0000 @@ -1180,7 +1180,7 @@ argv[skip_args] = fdStr; execv (argv[0], argv); - fprintf (stderr, "emacs daemon: exec failed: %d\t%d\n", errno); + fprintf (stderr, "emacs daemon: exec failed: %d\n", errno); exit (1); }