From: David Lawrence Ramsey Date: Mon, 4 Oct 2004 16:01:37 +0000 (+0000) Subject: remove redundancy erroneously introduced when adding the ^T toggle to X-Git-Tag: v1.3.5~157 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=4c9e8f4211316dae78886c2548b234bb94791d39;p=nano.git 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 --- 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; }