From 146bb6026a33cc7c2fcc50161e84901288f81e35 Mon Sep 17 00:00:00 2001 From: David Lawrence Ramsey Date: Fri, 27 Aug 2004 21:02:38 +0000 Subject: [PATCH] in do_insertfile(), readd the NANO_SMALL #ifdef around the start_again: label to avoid a warning git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@1919 35c25a1d-7b9e-4130-9fde-d3aeb78583b8 --- ChangeLog | 4 ++++ src/files.c | 3 +++ 2 files changed, 7 insertions(+) diff --git a/ChangeLog b/ChangeLog index 96d2ffa7..dbcc8f85 100644 --- a/ChangeLog +++ b/ChangeLog @@ -11,6 +11,10 @@ CVS code - get_toggle(), get_edit_input(), and get_edit_mouse(); changes to do_browser(), do_justify(), do_help(), and main(). (DLR) - Simplify a few more translated messages. (DLR) +- files.c: + do_insertfile() + - Readd the NANO_SMALL #ifdef around the start_again: label to + avoid a warning. (DLR) - global.c: shortcut_init() - Remove redundant NANO_SMALL #ifdef. (DLR) diff --git a/src/files.c b/src/files.c index 6d9e5492..3003f7d9 100644 --- a/src/files.c +++ b/src/files.c @@ -443,7 +443,10 @@ void do_insertfile(int loading_file) wrap_reset(); #endif +#ifndef NANO_SMALL start_again: +#endif + #if !defined(DISABLE_BROWSER) || !defined(DISABLE_MOUSE) currshortcut = insertfile_list; #endif -- 2.39.5