1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-24 07:20:37 +00:00

*** empty log message ***

This commit is contained in:
Richard M. Stallman 1992-03-28 21:00:42 +00:00
parent f048679d0a
commit 906ad89def

View File

@ -104,7 +104,7 @@ main (argc, argv)
long now;
int tem;
char *lockname, *p;
char tempname[40];
char *tempname;
int desc;
#endif /* not MAIL_USE_FLOCK */
@ -182,6 +182,7 @@ main (argc, argv)
to bug-gnu-emacs@prep.ai.mit.edu so we can fix it. */
lockname = concat (inname, ".lock", "");
tempname = (char *) xmalloc (strlen (inname) + 20);
strcpy (tempname, inname);
p = tempname + strlen (tempname);
while (p != tempname && p[-1] != '/')