Commit dbbf9a05 authored by Chris Allegretta's avatar Chris Allegretta
Browse files

Okay maybe make it crash EVEN less.


git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@4495 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
No related merge requests found
Showing with 1 addition and 1 deletion
+1 -1
......@@ -2136,7 +2136,7 @@ bool do_writeout(bool exiting)
}
#ifndef NANO_TINY
if (name_exists && (openfile->current_stat && openfile->current_stat->st_mtime < st.st_mtime ||
if (name_exists && openfile->current_stat && (openfile->current_stat->st_mtime < st.st_mtime ||
openfile->current_stat->st_dev != st.st_dev || openfile->current_stat->st_ino != st.st_ino)) {
i = do_yesno_prompt(FALSE,
_("File was modified since you opened it, continue saving ? "));
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment