bug-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#18336: 24.4.50; When editing externally changed file, Emacs asks too


From: Noam Postavsky
Subject: bug#18336: 24.4.50; When editing externally changed file, Emacs asks too many questions
Date: Thu, 05 Mar 2020 09:13:32 -0500
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/26.3 (gnu/linux)

Eli Zaretskii <eliz@gnu.org> writes:

>> > and my /tmp file system where I also saw this is

>> I ran my initial experiment in ~/tmp,[...]
>> When I do the same on /tmp, which is mounted noatime I see the extra
>> "<file> changed on disk; really edit the buffer?" question on C-x C-s.

> lock_file calls verify-visited-file-modtime, which might be affected
> by the noatime option.  But I don't understand how noatime could
> affect verify-visited-file-modtime since the latter looks at mtime,
> not atime.

> Can someone who sees this step with GDB through lock_file and its
> callees, and see what goes wrong there and why?

Ah, looks like the noatime thing is just a coincidence.  What happens in
the ~/tmp case is that when lock_file is called from write_region, the
file doesn't exist, so the extra "changed on disk" question doesn't get
asked.  The reason the file doesn't exist, is because it was moved to
the backup name, in backup-buffer.  Files under /tmp/ are not backed up
by default, so in that case the file still exists and there is an extra
query.

    lock_file (Lisp_Object fn)
    {
      [...]
        if (!NILP (subject_buf)
        && NILP (Fverify_visited_file_modtime (subject_buf))
        && !NILP (Ffile_exists_p (fn)))
          call1 (intern ("userlock--ask-user-about-supersession-threat"), fn);

    (defun backup-buffer ()
      [...]
                  (rename-file real-file-name backupname t)

If I do (setq backup-enable-predicate #'ignore), i.e., disable backup,
then I get the extra query for ~/tmp/foo as well.  The OP mentions
version control, that also affects this because of the
vc-make-backup-files option (defaulting to nil, i.e., backup doesn't
happen for files under vc).





reply via email to

[Prev in Thread] Current Thread [Next in Thread]