Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
V
Vim
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Someone-Else
Vim
Commits
e4ce65d4
Commit
e4ce65d4
authored
14 years ago
by
Bram Moolenaar
Browse files
Options
Downloads
Patches
Plain Diff
After entering a crypt key would need to hit return to continue.
When silencing a message it would still clear a kept message.
parent
257a9c87
Loading
Loading
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/message.c
+5
-2
5 additions, 2 deletions
src/message.c
src/misc2.c
+1
-1
1 addition, 1 deletion
src/misc2.c
with
6 additions
and
3 deletions
src/message.c
+
5
−
2
View file @
e4ce65d4
...
...
@@ -1135,8 +1135,11 @@ msg_start()
{
int
did_return
=
FALSE
;
vim_free(keep_msg);
keep_msg = NULL; /* don't display old message now */
if
(
!
msg_silent
)
{
vim_free
(
keep_msg
);
keep_msg
=
NULL
;
/* don't display old message now */
}
#ifdef FEAT_EVAL
if
(
need_clr_eos
)
...
...
This diff is collapsed.
Click to expand it.
src/misc2.c
+
1
−
1
View file @
e4ce65d4
...
...
@@ -4016,9 +4016,9 @@ get_crypt_key(store, twice)
}
/* since the user typed this, no need to wait for return */
need_wait_return
=
FALSE
;
if
(
msg_didout
)
msg_putchar
(
'\n'
);
need_wait_return
=
FALSE
;
msg_didout
=
FALSE
;
free_crypt_key
(
p2
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment