do_insertfile() in files.c is already present -- in the past just
the wrong function was used in the relevant function-list item:
'do_insertfile_void' instead of the unintuitive 'ext_cmd_void'.
+ * src/browser (filesearch_init): Remove an unneeded format specifier.
2014-05-27 Chris Allegretta <chrisa@asty.org>
* src/winio.c (edit_refresh): wredrawln() is not supported under
#ifndef NANO_TINY
&search_history,
#endif
- browser_refresh, "%s%s%s%s%s%s", _("Search"),
+ browser_refresh, "%s%s%s%s%s", _("Search"),
#ifndef NANO_TINY
ISSET(CASE_SENSITIVE) ? _(" [Case Sensitive]") :
#endif
#ifndef NANO_TINY
ISSET(BACKWARDS_SEARCH) ? _(" [Backwards]") :
#endif
- "", "", buf);
+ "", buf);
/* Release buf now that we don't need it anymore. */
free(buf);