1
1

Removing an unneeded format specifier.

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@4923 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
Этот коммит содержится в:
Benno Schulenberg 2014-05-28 15:40:24 +00:00
родитель ff6b92cfdd
Коммит 9b084b2a1d
2 изменённых файлов: 3 добавлений и 2 удалений

Просмотреть файл

@ -11,6 +11,7 @@
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

Просмотреть файл

@ -797,7 +797,7 @@ int filesearch_init(void)
#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
@ -809,7 +809,7 @@ int filesearch_init(void)
#ifndef NANO_TINY
ISSET(BACKWARDS_SEARCH) ? _(" [Backwards]") :
#endif
"", "", buf);
"", buf);
/* Release buf now that we don't need it anymore. */
free(buf);