aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKarl Heuer1999-08-25 16:19:01 +0000
committerKarl Heuer1999-08-25 16:19:01 +0000
commitb4e94f425fc8dc1ffcb4bccf7677351aa9c1bab8 (patch)
tree06582b8bcfa59d212e0916ee4a3bedc51c7b8cab
parentbc597cc7be83a24e93ee9c032993389003d6ff5f (diff)
downloademacs-b4e94f425fc8dc1ffcb4bccf7677351aa9c1bab8.tar.gz
emacs-b4e94f425fc8dc1ffcb4bccf7677351aa9c1bab8.zip
(decode_options): Update version output.
(print_help_and_exit): Update bug report address.
-rw-r--r--lib-src/emacsclient.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib-src/emacsclient.c b/lib-src/emacsclient.c
index 0e88e2edc12..a7b25e8942c 100644
--- a/lib-src/emacsclient.c
+++ b/lib-src/emacsclient.c
@@ -90,7 +90,7 @@ decode_options (argc, argv)
90 break; 90 break;
91 91
92 case 'V': 92 case 'V':
93 fprintf (stderr, "Version %s\n", VERSION); 93 fprintf (stderr, "emacsclient %s\n", VERSION);
94 exit (1); 94 exit (1);
95 break; 95 break;
96 96
@@ -108,7 +108,7 @@ print_help_and_exit ()
108 "Usage: %s [-n] [--no-wait] [+LINENUMBER] FILENAME\n", 108 "Usage: %s [-n] [--no-wait] [+LINENUMBER] FILENAME\n",
109 progname); 109 progname);
110 fprintf (stderr, 110 fprintf (stderr,
111 "Report bugs to bug-gnu-emacs@prep.ai.mit.edu.\n"); 111 "Report bugs to bug-gnu-emacs@gnu.org.\n");
112 exit (1); 112 exit (1);
113} 113}
114 114