Commit 352801cf authored by Chris Allegretta's avatar Chris Allegretta
Browse files

Fix brace error with nano-tiny in do_writeout()

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@797 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
parent c1917e7b
Showing with 2 additions and 1 deletion
+2 -1
......@@ -1294,8 +1294,9 @@ int do_writeout(char *path, int exiting, int append)
else
i = statusq(1, writefile_list, WRITEFILE_LIST_LEN, "",
_("Write Selection to File"));
} else {
} else
#endif
{
if (append)
i = statusq(1, writefile_list, WRITEFILE_LIST_LEN, answer,
_("File Name to Append"));
......
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