aboutsummaryrefslogtreecommitdiffstats
path: root/lib-src
diff options
context:
space:
mode:
authorDan Nicolaescu2009-04-02 19:43:27 +0000
committerDan Nicolaescu2009-04-02 19:43:27 +0000
commit6133a1a9b7444f082a62f2acd92df1dc15ee6829 (patch)
treebb438cefd188c254d5b7ab81b4d2eb8dc740efcb /lib-src
parentf82e857f9fb6cd12ccb6e817334b1393886eebd1 (diff)
downloademacs-6133a1a9b7444f082a62f2acd92df1dc15ee6829.tar.gz
emacs-6133a1a9b7444f082a62f2acd92df1dc15ee6829.zip
(print_help_and_exit): Fix typo.
Diffstat (limited to 'lib-src')
-rw-r--r--lib-src/ChangeLog4
-rw-r--r--lib-src/emacsclient.c4
2 files changed, 6 insertions, 2 deletions
diff --git a/lib-src/ChangeLog b/lib-src/ChangeLog
index b9c6f1318e6..cd7f3f8344d 100644
--- a/lib-src/ChangeLog
+++ b/lib-src/ChangeLog
@@ -1,3 +1,7 @@
12009-04-02 Dan Nicolaescu <dann@ics.uci.edu>
2
3 * emacsclient.c (print_help_and_exit): Fix typo.
4
12009-03-21 Eli Zaretskii <eliz@gnu.org> 52009-03-21 Eli Zaretskii <eliz@gnu.org>
2 6
3 * ntlib.c (setuid): Argument is now unsigned. 7 * ntlib.c (setuid): Argument is now unsigned.
diff --git a/lib-src/emacsclient.c b/lib-src/emacsclient.c
index f66d6b4cd25..558427118e5 100644
--- a/lib-src/emacsclient.c
+++ b/lib-src/emacsclient.c
@@ -637,10 +637,10 @@ The following OPTIONS are accepted:\n\
637 Set filename of the TCP authentication file\n\ 637 Set filename of the TCP authentication file\n\
638-a, --alternate-editor=EDITOR\n\ 638-a, --alternate-editor=EDITOR\n\
639 Editor to fallback to if the server is not running\n" 639 Editor to fallback to if the server is not running\n"
640#ifdef WINDOWSNT 640#ifndef WINDOWSNT
641" If EDITOR is the empty string, start Emacs in daemon\n\ 641" If EDITOR is the empty string, start Emacs in daemon\n\
642 mode and try connecting again\n" 642 mode and try connecting again\n"
643#endif /* WINDOWSNT */ 643#endif /* not WINDOWSNT */
644"\n\ 644"\n\
645Report bugs to bug-gnu-emacs@gnu.org.\n", progname); 645Report bugs to bug-gnu-emacs@gnu.org.\n", progname);
646 exit (EXIT_SUCCESS); 646 exit (EXIT_SUCCESS);