1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-30 12:21:25 -08:00

(main): Improve error message if can't create lock file.

This commit is contained in:
Richard M. Stallman 2000-01-29 23:52:29 +00:00
parent 30d1306e55
commit 55e30d2abd
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2000-01-29 Richard M. Stallman <rms@caffeine.ai.mit.edu>
* movemail.c (main): Improve error message if can't create lock file.
2000-01-28 Eric Hanchrow <offby1@blarg.net>
* emacsclient.c (socket_status): New function.

View file

@ -328,7 +328,7 @@ main (argc, argv)
if (desc < 0)
{
char *message = (char *) xmalloc (strlen (tempname) + 50);
sprintf (message, "%s--see source file lib-src/movemail.c",
sprintf (message, "can't create %s to become the lock file",
tempname);
pfatal_with_name (message);
}