commit ab6e4e36e2af25f007b382ec329377ab53bc22f5
parent 84c650b80a32047b091e768cde00b2e39ca0b203
Author: Benno Schulenberg <bensberg@telfort.nl>
Date: Sun, 29 Oct 2017 10:30:01 +0100
tweaks: fix compilation with --enable-tiny --enable-histories
Diffstat:
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/src/files.c b/src/files.c
@@ -1066,7 +1066,10 @@ void do_insertfile(void)
#endif
MINSERTFILE, given,
#ifndef DISABLE_HISTORIES
- execute ? &execute_history : NULL,
+#ifndef NANO_TINY
+ execute ? &execute_history :
+#endif
+ NULL,
#endif
edit_refresh, msg,
#ifndef DISABLE_OPERATINGDIR