]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fwrite_region): Turn off the feature of checking
authorRichard M. Stallman <rms@gnu.org>
Thu, 7 Aug 1997 08:56:22 +0000 (08:56 +0000)
committerRichard M. Stallman <rms@gnu.org>
Thu, 7 Aug 1997 08:56:22 +0000 (08:56 +0000)
whether another buffer has locked this file.

src/fileio.c

index 9ad7a42ea2aa099dba4982798851b3346be2675b..229e85352ec2e5156f5b618d097d90b83e2c41d3 100644 (file)
@@ -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);
     }