From b77ec62cde2f71b95d99b95b8eccaaf3ef25ba6b Mon Sep 17 00:00:00 2001
From: David Lawrence Ramsey <pooka109@gmail.com>
Date: Tue, 28 Sep 2004 15:06:15 +0000
Subject: [PATCH] for consistency, at the "Go To Line" prompt, display
 "Cancelled" instead of "Aborted" if we cancel

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@1945 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
---
 src/search.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/search.c b/src/search.c
index 4b519b25..e0d5602b 100644
--- a/src/search.c
+++ b/src/search.c
@@ -868,7 +868,7 @@ void do_gotoline(int line, bool save_pos)
 
 	/* Cancel, or Enter with blank string. */
 	if (st == -1 || st == -2)
-	    statusbar(_("Aborted"));
+	    statusbar(_("Cancelled"));
 	if (st != 0) {
 	    display_main_list();
 	    return;
-- 
GitLab