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
0242d842
Commit
0242d842
authored
8 years ago
by
Benno Schulenberg
Browse files
Options
Download
Email Patches
Plain Diff
tweaks: make a call in one place instead of in four different ones
And remove a superfluous call.
parent
7275e11c
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/prompt.c
+2
-9
src/prompt.c
with
2 additions
and
9 deletions
+2
-9
src/prompt.c
View file @
0242d842
...
...
@@ -547,8 +547,6 @@ functionptrtype acquire_an_answer(int *actual, bool allow_tabs,
if
(
allow_tabs
)
answer
=
input_tab
(
answer
,
allow_files
,
&
statusbar_x
,
&
tabbed
,
refresh_func
,
listed
);
update_the_statusbar
();
}
else
#endif
/* !DISABLE_TABCOMP */
#ifndef DISABLE_HISTORIES
...
...
@@ -566,8 +564,6 @@ functionptrtype acquire_an_answer(int *actual, bool allow_tabs,
statusbar_x
=
strlen
(
answer
);
}
update_the_statusbar
();
/* This key has a shortcut-list entry when it's used to
* move to an older search, which means that finished has
* been set to TRUE. Set it back to FALSE here, so that
...
...
@@ -592,8 +588,6 @@ functionptrtype acquire_an_answer(int *actual, bool allow_tabs,
statusbar_x
=
strlen
(
answer
);
}
update_the_statusbar
();
/* This key has a shortcut-list entry when it's used to
* move to a newer search, which means that finished has
* been set to TRUE. Set it back to FALSE here, so that
...
...
@@ -603,8 +597,6 @@ functionptrtype acquire_an_answer(int *actual, bool allow_tabs,
}
else
#endif
/* !DISABLE_HISTORIES */
if
(
func
==
do_help_void
)
{
update_the_statusbar
();
/* This key has a shortcut-list entry when it's used to go to
* the help browser or display a message indicating that help
* is disabled, which means that finished has been set to TRUE.
...
...
@@ -618,10 +610,11 @@ functionptrtype acquire_an_answer(int *actual, bool allow_tabs,
if
(
finished
)
break
;
update_the_statusbar
();
#if !defined(DISABLE_HISTORIES) && !defined(DISABLE_TABCOMP)
last_kbinput
=
kbinput
;
#endif
reset_statusbar_cursor
();
}
#ifndef DISABLE_HISTORIES
...
...
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