# HG changeset patch # User Dan Nicolaescu # Date 1238701407 0 # Node ID 3b582fef386d159542b943a3e97201291e1aec29 # Parent c2de70f2c6762278b20b0ca7a6141076bfb4e49e (print_help_and_exit): Fix typo. diff -r c2de70f2c676 -r 3b582fef386d lib-src/ChangeLog --- a/lib-src/ChangeLog Thu Apr 02 11:43:12 2009 +0000 +++ b/lib-src/ChangeLog Thu Apr 02 19:43:27 2009 +0000 @@ -1,3 +1,7 @@ +2009-04-02 Dan Nicolaescu + + * emacsclient.c (print_help_and_exit): Fix typo. + 2009-03-21 Eli Zaretskii * ntlib.c (setuid): Argument is now unsigned. diff -r c2de70f2c676 -r 3b582fef386d lib-src/emacsclient.c --- a/lib-src/emacsclient.c Thu Apr 02 11:43:12 2009 +0000 +++ b/lib-src/emacsclient.c Thu Apr 02 19:43:27 2009 +0000 @@ -637,10 +637,10 @@ Set filename of the TCP authentication file\n\ -a, --alternate-editor=EDITOR\n\ Editor to fallback to if the server is not running\n" -#ifdef WINDOWSNT +#ifndef WINDOWSNT " If EDITOR is the empty string, start Emacs in daemon\n\ mode and try connecting again\n" -#endif /* WINDOWSNT */ +#endif /* not WINDOWSNT */ "\n\ Report bugs to bug-gnu-emacs@gnu.org.\n", progname); exit (EXIT_SUCCESS);