* src/global.c (strtosc): Fix compilation with --enable-tiny
--enable-histories --enable-nanorc.
* src/text.c: Fix compilation with --enable-tiny --enable-wrapping.
+ * src/files.c (do_insertfile): Fix compilation with --enable-tiny
+ --enable-histories --enable-multibuffer.
2014-06-19 Benno Schulenberg <bensberg@justemail.net>
* src/nano.c (window_init): Rename 'no_more_space()' to 'more_space()'
display_buffer();
ssize_t savedposline, savedposcol;
- if (!execute && ISSET(POS_HISTORY)
- && check_poshistory(answer, &savedposline, &savedposcol))
+ if (ISSET(POS_HISTORY) &&
+#ifndef NANO_TINY
+ !execute &&
+#endif
+ check_poshistory(answer, &savedposline, &savedposcol))
do_gotolinecolumn(savedposline, savedposcol, FALSE, FALSE, FALSE, FALSE);
} else
#endif