changeset 19206:c21764412813

(Fwrite_region): Turn off the feature of checking whether another buffer has locked this file.
author Richard M. Stallman <rms@gnu.org>
date Thu, 07 Aug 1997 08:56:22 +0000
parents 7448901d6449
children be370e94fb42
files src/fileio.c
diffstat 1 files changed, 2 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- 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);
     }