Commit 1536f861 authored by David Lawrence Ramsey's avatar David Lawrence Ramsey
Browse files

fix spacing problem in the "Save Under Different Name" prompt

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@1864 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
parent c41d428b
Showing with 3 additions and 1 deletion
+3 -1
...@@ -57,6 +57,8 @@ CVS code - ...@@ -57,6 +57,8 @@ CVS code -
- If we're in restricted mode abd the current filename isn't - If we're in restricted mode abd the current filename isn't
blank, we can't change it, so disable tab completion in that blank, we can't change it, so disable tab completion in that
case. (DLR) case. (DLR)
- Fix spacing problem in the "Save Under Different Name"
prompt. (DLR)
- global.c: - global.c:
shortcut_init() shortcut_init()
- Fix erroneous #ifdef so that nano compiles with - Fix erroneous #ifdef so that nano compiles with
......
...@@ -1932,7 +1932,7 @@ int do_writeout(int exiting) ...@@ -1932,7 +1932,7 @@ int do_writeout(int exiting)
&& (exiting || !ISSET(MARK_ISSET)) && (exiting || !ISSET(MARK_ISSET))
#endif #endif
) { ) {
i = do_yesno(FALSE, _("Save file under DIFFERENT NAME ?" )); i = do_yesno(FALSE, _("Save file under DIFFERENT NAME ? "));
if (i == 0 || i == -1) if (i == 0 || i == -1)
continue; continue;
} }
......
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