Commit 572207da authored by David Lawrence Ramsey's avatar David Lawrence Ramsey
Browse files

formatting fixes

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3316 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
No related merge requests found
Showing with 5 additions and 12 deletions
+5 -12
...@@ -177,35 +177,28 @@ int search_init(bool replacing, bool use_answer) ...@@ -177,35 +177,28 @@ int search_init(bool replacing, bool use_answer)
&search_history, &search_history,
#endif #endif
edit_refresh, "%s%s%s%s%s%s", _("Search"), edit_refresh, "%s%s%s%s%s%s", _("Search"),
#ifndef NANO_TINY #ifndef NANO_TINY
/* This string is just a modifier for the search prompt; no /* This string is just a modifier for the search prompt; no
* grammar is implied. */ * grammar is implied. */
ISSET(CASE_SENSITIVE) ? _(" [Case Sensitive]") : ISSET(CASE_SENSITIVE) ? _(" [Case Sensitive]") :
#endif #endif
"", "",
#ifdef HAVE_REGEX_H #ifdef HAVE_REGEX_H
/* This string is just a modifier for the search prompt; no /* This string is just a modifier for the search prompt; no
* grammar is implied. */ * grammar is implied. */
ISSET(USE_REGEXP) ? _(" [Regexp]") : ISSET(USE_REGEXP) ? _(" [Regexp]") :
#endif #endif
"", "",
#ifndef NANO_TINY #ifndef NANO_TINY
/* This string is just a modifier for the search prompt; no /* This string is just a modifier for the search prompt; no
* grammar is implied. */ * grammar is implied. */
ISSET(BACKWARDS_SEARCH) ? _(" [Backwards]") : ISSET(BACKWARDS_SEARCH) ? _(" [Backwards]") :
#endif #endif
"", "", replacing ?
replacing ?
#ifndef NANO_TINY #ifndef NANO_TINY
openfile->mark_set ? _(" (to replace) in selection") : openfile->mark_set ? _(" (to replace) in selection") :
#endif #endif
_(" (to replace)") : "", _(" (to replace)") : "", buf);
buf);
/* Release buf now that we don't need it anymore. */ /* Release buf now that we don't need it anymore. */
free(buf); free(buf);
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment