summaryrefslogtreecommitdiffstats
path: root/src/normal.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2022-08-31 14:46:18 +0100
committerBram Moolenaar <Bram@vim.org>2022-08-31 14:46:18 +0100
commita2a8973e51a0052bb52e43a2b22e7ecdecc32003 (patch)
tree42700a5eab4930539b87591ad903f7271b527fc3 /src/normal.c
parenta63ad78ed31e36dbdf3a9cd28071dcdbefce7d19 (diff)
patch 9.0.0340: the 'cmdheight' zero support causes too much troublev9.0.0340
Problem: The 'cmdheight' zero support causes too much trouble. Solution: Revert support for 'cmdheight' being zero.
Diffstat (limited to 'src/normal.c')
-rw-r--r--src/normal.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/normal.c b/src/normal.c
index 926f50478e..fb2bced04a 100644
--- a/src/normal.c
+++ b/src/normal.c
@@ -1796,9 +1796,6 @@ display_showcmd(void)
{
int len;
- if (p_ch == 0)
- return;
-
cursor_off();
len = (int)STRLEN(showcmd_buf);