From a3445232a47e487f06a42e7c184362bcfa1b7179 Mon Sep 17 00:00:00 2001 From: Maxime Coste Date: Thu, 19 Dec 2019 13:39:30 +1100 Subject: [PATCH] Update fs status post buffer write --- src/buffer.cc | 4 ++-- src/buffer.hh | 2 +- src/file.cc | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/buffer.cc b/src/buffer.cc index 0d738dad5..f7eeee318 100644 --- a/src/buffer.cc +++ b/src/buffer.cc @@ -607,14 +607,14 @@ bool Buffer::is_modified() const not m_current_undo_group.empty()); } -void Buffer::notify_saved() +void Buffer::notify_saved(FsStatus status) { if (not m_current_undo_group.empty()) commit_undo_group(); m_flags &= ~Flags::New; m_last_save_history_id = m_history_id; - m_fs_status.timestamp = get_fs_timestamp(m_name); + m_fs_status = status; } BufferCoord Buffer::advance(BufferCoord coord, ByteCount count) const diff --git a/src/buffer.hh b/src/buffer.hh index a2517956b..0700acb9d 100644 --- a/src/buffer.hh +++ b/src/buffer.hh @@ -203,7 +203,7 @@ public: bool is_modified() const; // notify the buffer that it was saved in the current state - void notify_saved(); + void notify_saved(FsStatus status); ValueMap& values() const { return m_values; } diff --git a/src/file.cc b/src/file.cc index 180eca4a8..79043d1c5 100644 --- a/src/file.cc +++ b/src/file.cc @@ -392,7 +392,7 @@ void write_buffer_to_file(Buffer& buffer, StringView filename, if ((buffer.flags() & Buffer::Flags::File) and real_path(filename) == real_path(buffer.name())) - buffer.notify_saved(); + buffer.notify_saved(get_fs_status(real_path(filename))); } void write_buffer_to_backup_file(Buffer& buffer)