diff options
| author | Stephen Eglen | 2002-12-02 20:57:42 +0000 |
|---|---|---|
| committer | Stephen Eglen | 2002-12-02 20:57:42 +0000 |
| commit | 45adde3246593cb0710ca6976ac536ce3d798c6e (patch) | |
| tree | d42c4c00ea004bafdcb86fcd7c3f81e02eed52c9 /lib-src | |
| parent | c0752905a7d6a707070efae068a079b5cb4eac9c (diff) | |
| download | emacs-45adde3246593cb0710ca6976ac536ce3d798c6e.tar.gz emacs-45adde3246593cb0710ca6976ac536ce3d798c6e.zip | |
(main): Tell user how to start server within Emacs if socket could not
be found.
Diffstat (limited to 'lib-src')
| -rw-r--r-- | lib-src/emacsclient.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib-src/emacsclient.c b/lib-src/emacsclient.c index 81245bcd66a..9a4a974c946 100644 --- a/lib-src/emacsclient.c +++ b/lib-src/emacsclient.c | |||
| @@ -380,7 +380,8 @@ main (argc, argv) | |||
| 380 | /* `stat' failed */ | 380 | /* `stat' failed */ |
| 381 | if (errno == ENOENT) | 381 | if (errno == ENOENT) |
| 382 | fprintf (stderr, | 382 | fprintf (stderr, |
| 383 | "%s: can't find socket; have you started the server?\n", | 383 | "%s: can't find socket; have you started the server?\n\ |
| 384 | To start the server in Emacs, type \"M-x server-start\".\n", | ||
| 384 | argv[0]); | 385 | argv[0]); |
| 385 | else | 386 | else |
| 386 | fprintf (stderr, "%s: can't stat %s: %s\n", | 387 | fprintf (stderr, "%s: can't stat %s: %s\n", |