diff options
author | Björn Linse <bjorn.linse@gmail.com> | 2017-05-10 09:54:54 +0200 |
---|---|---|
committer | Björn Linse <bjorn.linse@gmail.com> | 2017-05-10 16:14:12 +0200 |
commit | 7d6af9985c057eef8f6bb2a625744df1b4ad0a72 (patch) | |
tree | 37b0cad73a42d11a9bfd65f21bd1abfae7460bf9 /src/nvim/terminal.c | |
parent | c778311505fe89e3f32ff3027f0a41f0a2b2fd95 (diff) | |
download | rneovim-7d6af9985c057eef8f6bb2a625744df1b4ad0a72.tar.gz rneovim-7d6af9985c057eef8f6bb2a625744df1b4ad0a72.tar.bz2 rneovim-7d6af9985c057eef8f6bb2a625744df1b4ad0a72.zip |
ui: cleanup UI_CALL wrappers
remove pointless control chars in the text stream
Diffstat (limited to 'src/nvim/terminal.c')
-rw-r--r-- | src/nvim/terminal.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/terminal.c b/src/nvim/terminal.c index cc1de583d3..b8b7085c5e 100644 --- a/src/nvim/terminal.c +++ b/src/nvim/terminal.c @@ -683,7 +683,7 @@ static int term_settermprop(VTermProp prop, VTermValue *val, void *data) static int term_bell(void *data) { - ui_putc('\x07'); + ui_call_bell(); return 1; } |