diff options
author | Michael Reed <m.reed@mykolab.com> | 2015-04-10 22:12:29 -0400 |
---|---|---|
committer | Michael Reed <m.reed@mykolab.com> | 2015-04-10 22:12:29 -0400 |
commit | 98f976b861afe1a92e34d098c9172a365576251e (patch) | |
tree | bb6f6a6a69acb393d29469881bf73957fd224a0d /src/nvim/terminal.c | |
parent | e584fe00570a522154ce856581006644e766f88f (diff) | |
download | rneovim-98f976b861afe1a92e34d098c9172a365576251e.tar.gz rneovim-98f976b861afe1a92e34d098c9172a365576251e.tar.bz2 rneovim-98f976b861afe1a92e34d098c9172a365576251e.zip |
coverity/108870: Missing break in switch
Diffstat (limited to 'src/nvim/terminal.c')
-rw-r--r-- | src/nvim/terminal.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/terminal.c b/src/nvim/terminal.c index 7242abaa45..7e5664230e 100644 --- a/src/nvim/terminal.c +++ b/src/nvim/terminal.c @@ -383,6 +383,7 @@ void terminal_enter(bool process_deferred) if (got_bs) { goto end; } + // FALLTHROUGH default: if (c == Ctrl_BSL && !got_bs) { |