summaryrefslogtreecommitdiff
path: root/src/file.cc
diff options
context:
space:
mode:
authorMaxime Coste <mawww@kakoune.org>2019-12-19 13:39:30 +1100
committerMaxime Coste <mawww@kakoune.org>2019-12-19 13:39:30 +1100
commita3445232a47e487f06a42e7c184362bcfa1b7179 (patch)
tree6178158cc5f3b195b7ba02f32708837c8d760c01 /src/file.cc
parentb68490ef11734c404f8a18f1babd8004aca2de06 (diff)
Update fs status post buffer write
Diffstat (limited to 'src/file.cc')
-rw-r--r--src/file.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/file.cc b/src/file.cc
index 180eca4a..79043d1c 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)