Remove saved file's mtime check comparing it with the current time
commit3495cf05abf42e5f08952a19d3798cc27a50b6e6
authorJiří Techet <techet@gmail.com>
Mon, 17 Aug 2015 15:06:49 +0000 (17 17:06 +0200)
committerJiří Techet <techet@gmail.com>
Tue, 18 Aug 2015 17:48:12 +0000 (18 19:48 +0200)
tree149fd0107ef968db36900feb0b8debb20a71f5bd
parent1658babe452f58f37c84ebcfb34df97e14726351
Remove saved file's mtime check comparing it with the current time

As the edited file can be a remote file on a server with a different time
zone, the mtime can actually be in the future. In this case the check not
only shows the misleading warning but more importantly the

doc->priv->mtime < st.st_mtime

check never happens and the user doesn't get the modified file prompt.

Setting

doc->priv->mtime = time(NULL);

to the current time on file creation isn't harmful in any way because the
saved file's mtime is taken but it's a bit misleading so better to set it
to 0.
src/document.c