Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
cs24-19fa
git_rec_nano
Commits
f1b5be4b
Commit
f1b5be4b
authored
7 years ago
by
Benno Schulenberg
Browse files
Options
Download
Email Patches
Plain Diff
tweaks: elide an unneeded variable
parent
9ceeabda
master
feature/match-parens
refactor/readbility
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/search.c
+4
-6
src/search.c
with
4 additions
and
6 deletions
+4
-6
src/search.c
View file @
f1b5be4b
...
...
@@ -96,10 +96,10 @@ void search_init(bool replacing, bool keep_the_answer)
{
char
*
thedefault
;
/* What will be searched for when the user typed nothing. */
static
char
*
sofar
=
NULL
;
/* What the user has typed so far, before toggling something. */
sofar
=
mallocstrcpy
(
sofar
,
keep_the_answer
?
answer
:
""
);
/* When starting a new search, clear the current answer. */
if
(
!
keep_the_answer
)
answer
=
mallocstrcpy
(
answer
,
NULL
);
/* If something was searched for earlier, include it in the prompt. */
if
(
*
last_search
!=
'\0'
)
{
...
...
@@ -118,7 +118,7 @@ void search_init(bool replacing, bool keep_the_answer)
/* Ask the user what to search for (or replace). */
int
i
=
do_prompt
(
FALSE
,
FALSE
,
inhelp
?
MFINDINHELP
:
(
replacing
?
MREPLACE
:
MWHEREIS
),
sofa
r
,
&
search_history
,
answe
r
,
&
search_history
,
/* TRANSLATORS: This is the main search prompt. */
edit_refresh
,
"%s%s%s%s%s%s"
,
_
(
"Search"
),
/* TRANSLATORS: The next three modify the search prompt. */
...
...
@@ -168,8 +168,6 @@ void search_init(bool replacing, bool keep_the_answer)
return
;
}
sofar
=
mallocstrcpy
(
sofar
,
answer
);
func
=
func_from_key
(
&
i
);
/* If we're here, one of the five toggles was pressed, or
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment
Menu
Projects
Groups
Snippets
Help