]> git.wh0rd.org Git - nano.git/commitdiff
fix spacing problem in the "Save Under Different Name" prompt
authorDavid Lawrence Ramsey <pooka109@gmail.com>
Sat, 24 Jul 2004 16:50:20 +0000 (16:50 +0000)
committerDavid Lawrence Ramsey <pooka109@gmail.com>
Sat, 24 Jul 2004 16:50:20 +0000 (16:50 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@1864 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

ChangeLog
src/files.c

index 336a668fa5ae4c6610643fe150b13bdc65cbd3f7..69e4d9ba1674ca4c81635b966fb78d072d8ac571 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -57,6 +57,8 @@ CVS code -
        - If we're in restricted mode abd the current filename isn't
          blank, we can't change it, so disable tab completion in that
          case. (DLR)
+       - Fix spacing problem in the "Save Under Different Name"
+         prompt. (DLR)
 - global.c:
   shortcut_init()
        - Fix erroneous #ifdef so that nano compiles with
index acce06c036dfdc113ee97a01e0d46412c0f859e7..ee3a5d789dc3bbbafe78aec2933cf93eb5af0f49 100644 (file)
@@ -1932,7 +1932,7 @@ int do_writeout(int exiting)
                && (exiting || !ISSET(MARK_ISSET))
 #endif
                ) {
-               i = do_yesno(FALSE, _("Save file under DIFFERENT NAME ?));
+               i = do_yesno(FALSE, _("Save file under DIFFERENT NAME ? "));
                if (i == 0 || i == -1)
                    continue;
            }