From: Richard M. Stallman Date: Thu, 7 Aug 1997 08:56:22 +0000 (+0000) Subject: (Fwrite_region): Turn off the feature of checking X-Git-Tag: emacs-20.1~741 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=a9171faac4d84a536cc03b0232a297160a57dc88;p=emacs.git (Fwrite_region): Turn off the feature of checking whether another buffer has locked this file. --- 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); }