build: fix compilation with --enable-{tiny,help,multibuffer}

This commit is contained in:
Benno Schulenberg 2018-05-28 11:31:30 +02:00
parent 738487f13d
commit 59eb01b403
1 changed files with 2 additions and 0 deletions

View File

@ -1342,7 +1342,9 @@ void shortcut_init(void)
/* Only when not in restricted mode, allow multiple buffers. */
if (!ISSET(RESTRICTED)) {
add_to_sclist(MINSERTFILE|MEXTCMD, "M-F", 0, flip_newbuffer, 0);
#ifndef NANO_TINY
add_to_sclist(MEXTCMD, "M-\\", 0, flip_pipe, 0);
#endif
}
#endif
#ifdef ENABLE_BROWSER