From a9171faac4d84a536cc03b0232a297160a57dc88 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Thu, 7 Aug 1997 08:56:22 +0000 Subject: [PATCH] (Fwrite_region): Turn off the feature of checking whether another buffer has locked this file. --- src/fileio.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/fileio.c b/src/fileio.c index 9ad7a42ea2a..229e85352ec 100644 --- a/src/fileio.c +++ b/src/fileio.c @@ -3910,10 +3910,12 @@ to the file, instead of any buffer contents, and END is ignored.") #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); } -- 2.39.2