From 4c9e8f4211316dae78886c2548b234bb94791d39 Mon Sep 17 00:00:00 2001 From: David Lawrence Ramsey Date: Mon, 4 Oct 2004 16:01:37 +0000 Subject: [PATCH] remove redundancy erroneously introduced when adding the ^T toggle to the "Go To Line" prompt git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@1963 35c25a1d-7b9e-4130-9fde-d3aeb78583b8 --- src/search.c | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/src/search.c b/src/search.c index 121e57c4..cf155723 100644 --- a/src/search.c +++ b/src/search.c @@ -869,16 +869,14 @@ void do_gotoline(int line, bool save_pos) free(ans); /* Cancel, or Enter with blank string. */ - if (i < 0) + if (i < 0) { statusbar(_("Cancelled")); - - if (i == NANO_TOOTHERWHEREIS_KEY) { - do_search(); + display_main_list(); return; } - if (i != 0) { - display_main_list(); + if (i == NANO_TOOTHERWHEREIS_KEY) { + do_search(); return; } -- 2.39.5