Rocco's unset modified on tmp file write fix
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@315 35c25a1d-7b9e-4130-9fde-d3aeb78583b8master
parent
0f5dfef8b0
commit
650e8a406b
|
@ -6,6 +6,9 @@ CVS code -
|
||||||
- Username tab completion code, and cleaned up existing tabcomp
|
- Username tab completion code, and cleaned up existing tabcomp
|
||||||
code. New functions real_dir_from_tide(), append_slash_if_dir(),
|
code. New functions real_dir_from_tide(), append_slash_if_dir(),
|
||||||
username_tab_completion is more than a stub now =-).
|
username_tab_completion is more than a stub now =-).
|
||||||
|
- files.c:
|
||||||
|
write_file()
|
||||||
|
- Unsetting modified on temp files bug fixed (Rocco Corsi).
|
||||||
|
|
||||||
nano 0.9.21 - 11/23/2000
|
nano 0.9.21 - 11/23/2000
|
||||||
- AUTHORS
|
- AUTHORS
|
||||||
|
|
4
files.c
4
files.c
|
@ -446,9 +446,9 @@ int write_file(char *name, int tmp)
|
||||||
if (!tmp) {
|
if (!tmp) {
|
||||||
strncpy(filename, realname, 132);
|
strncpy(filename, realname, 132);
|
||||||
statusbar(_("Wrote %d lines"), lineswritten);
|
statusbar(_("Wrote %d lines"), lineswritten);
|
||||||
|
UNSET(MODIFIED);
|
||||||
|
titlebar();
|
||||||
}
|
}
|
||||||
UNSET(MODIFIED);
|
|
||||||
titlebar();
|
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"POT-Creation-Date: 2000-11-24 09:02-0500\n"
|
"POT-Creation-Date: 2000-11-24 09:04-0500\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
|
Loading…
Reference in New Issue