diff --git a/src/files.c b/src/files.c
index fd3e14dc823555cccbc49af14ed91b4bc07ea7a6..23898446dc25a84af8b9135e7c99fbba21b79d43 100644
--- a/src/files.c
+++ b/src/files.c
@@ -738,7 +738,9 @@ void do_insertfile(
 #endif
 		MINSERTFILE, ans,
 		&meta_key, &func_key,
+#ifndef NANO_TINY
 		NULL,
+#endif
 		edit_refresh, msg,
 #ifndef DISABLE_OPERATINGDIR
 		operating_dir != NULL && strcmp(operating_dir,
diff --git a/src/global.c b/src/global.c
index 85e91590e1ff382118a39620037dfcd5fd9c1129..66935219f103b02279cf4f1029765f13b5b4cbf2 100644
--- a/src/global.c
+++ b/src/global.c
@@ -830,9 +830,9 @@ void shortcut_init(bool unjustify)
 
 #ifdef ENABLE_MULTIBUFFER
     add_to_funcs(switch_to_prev_buffer_void, MMAIN, _("Previous File"),
-	nano_prevfile_msg, FALSE, VIEW);
+	IFSCHELP(nano_prevfile_msg), FALSE, VIEW);
     add_to_funcs(switch_to_next_buffer_void, MMAIN, N_("Next File"),
-	nano_nextfile_msg, TRUE, VIEW);
+	IFSCHELP(nano_nextfile_msg), TRUE, VIEW);
 #endif
 
     add_to_funcs(do_verbatim_input, MMAIN, N_("Verbatim Input"),