# HG changeset patch # User Richard M. Stallman # Date 870944182 0 # Node ID c2176441281352ccb8a1ff5f5da66876cb5306d8 # Parent 7448901d644981a7f06ca6eb919cd51869e0a502 (Fwrite_region): Turn off the feature of checking whether another buffer has locked this file. diff -r 7448901d6449 -r c21764412813 src/fileio.c --- a/src/fileio.c Thu Aug 07 08:30:47 1997 +0000 +++ b/src/fileio.c Thu Aug 07 08:56:22 1997 +0000 @@ -3910,10 +3910,12 @@ #ifdef CLASH_DETECTION if (!auto_saving) { +#if 0 /* This causes trouble for GNUS. */ /* If we've locked this file for some other buffer, query before proceeding. */ if (!visiting && EQ (Ffile_locked_p (lockname), Qt)) call2 (intern ("ask-user-about-lock"), filename, Vuser_login_name); +#endif lock_file (lockname); }