From da35251e98d89b4785b54f5ce780b767725d4c86 Mon Sep 17 00:00:00 2001 From: David Lawrence Ramsey Date: Fri, 5 Mar 2004 20:04:44 +0000 Subject: [PATCH] wrap one reference to NANO_EXTCMD_KEY in a NANO_SMALL #ifdef git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@1686 35c25a1d-7b9e-4130-9fde-d3aeb78583b8 --- ChangeLog | 3 +++ src/files.c | 6 +++++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 04dae9b6..f5c4421e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -35,6 +35,9 @@ CVS code - - Port to the Tandem NonStop Kernel (nsr-tandem-nsk). (Tom Bates; minor tweaks by DLR) - files.c: + do_insertfile() + - Wrap one reference to NANO_EXTCMD_KEY in a NANO_SMALL #ifdef. + (DLR) add_open_files() - Make the saving of marked status in open_files->file_flags work properly again; a tweak to the ISSET() macro in 1.3.0 diff --git a/src/files.c b/src/files.c index d69c46b8..ea9dd368 100644 --- a/src/files.c +++ b/src/files.c @@ -524,7 +524,11 @@ int do_insertfile(int loading_file) #endif #ifndef DISABLE_OPERATINGDIR - if (i != NANO_EXTCMD_KEY && check_operating_dir(answer, 0) != 0) { + if ( +#ifndef NANO_SMALL + i != NANO_EXTCMD_KEY && +#endif + check_operating_dir(answer, 0) != 0) { statusbar(_("Can't insert file from outside of %s"), operating_dir); return 0; -- 2.39.5