Commit 0e1df431 authored by David Lawrence Ramsey's avatar David Lawrence Ramsey
Browse files

cosmetic fixes

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@4036 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
parent d8d19ba3
Showing with 2 additions and 2 deletions
+2 -2
......@@ -613,7 +613,7 @@ void die_save_file(const char *die_filename)
retval = get_next_filename(die_filename, ".save");
if (retval[0] != '\0')
failed = (!write_file(retval, NULL, TRUE, OVERWRITE, TRUE));
failed = !write_file(retval, NULL, TRUE, OVERWRITE, TRUE);
if (!failed)
fprintf(stderr, _("\nBuffer written to %s\n"), retval);
......
......@@ -2313,7 +2313,7 @@ void do_spell(void)
status =
#ifndef NANO_TINY
(openfile->mark_set) ? write_marked_file(temp, temp_file, TRUE,
openfile->mark_set ? write_marked_file(temp, temp_file, TRUE,
OVERWRITE) :
#endif
write_file(temp, temp_file, TRUE, OVERWRITE, FALSE);
......
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