From 1536f8613d41c470bb7f7cc18300cae738c15c1b Mon Sep 17 00:00:00 2001
From: David Lawrence Ramsey <pooka109@gmail.com>
Date: Sat, 24 Jul 2004 16:50:20 +0000
Subject: [PATCH] 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
---
 ChangeLog   | 2 ++
 src/files.c | 2 +-
 2 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/ChangeLog b/ChangeLog
index 336a668f..69e4d9ba 100644
--- 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
diff --git a/src/files.c b/src/files.c
index acce06c0..ee3a5d78 100644
--- a/src/files.c
+++ b/src/files.c
@@ -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;
 	    }
-- 
GitLab