diff options
author | Richard M. Stallman <rms@gnu.org> | 1995-04-18 20:50:19 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1995-04-18 20:50:19 +0000 |
commit | 26396b1bdaca1638bbce5ae8740783b9b926d818 (patch) | |
tree | 81863546d8bfb777c2ebacba48de3d5d4ef44d8c /lib-src/emacsclient.c | |
parent | 66de157de04c1496bd197e93e12fea618f89f06a (diff) | |
download | emacs-26396b1bdaca1638bbce5ae8740783b9b926d818.tar.gz |
(main): Add argv[0] to an error message.
Diffstat (limited to 'lib-src/emacsclient.c')
-rw-r--r-- | lib-src/emacsclient.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib-src/emacsclient.c b/lib-src/emacsclient.c index 6594910aa80..56f1dd31ff5 100644 --- a/lib-src/emacsclient.c +++ b/lib-src/emacsclient.c @@ -261,7 +261,7 @@ main (argc, argv) } else { - fprintf (stderr, cwd); + fprintf (stderr, "%s: %s\n", argv[0], cwd); exit (1); } |