aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/os/shell.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/nvim/os/shell.c')
-rw-r--r--src/nvim/os/shell.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/os/shell.c b/src/nvim/os/shell.c
index 5b3cb64a4d..166e06b1a4 100644
--- a/src/nvim/os/shell.c
+++ b/src/nvim/os/shell.c
@@ -455,7 +455,7 @@ static void out_data_append_to_screen(char *output, size_t remaining,
{
char *p = output, *end = output + remaining;
while (p < end) {
- if (*p == '\n' || *p == '\r' || *p == TAB) {
+ if (*p == '\n' || *p == '\r' || *p == TAB || *p == BELL) {
msg_putchar_attr((uint8_t)(*p), 0);
p++;
} else {