From c95fdcd12740795ce2e0209e0f1d796a49f300d5 Mon Sep 17 00:00:00 2001 From: Jan Edmund Lazo Date: Tue, 26 Mar 2019 23:46:14 -0400 Subject: vim-patch:8.0.1528: dead code found Problem: Dead code found. Solution: Remove the useless lines. (CodeAi, closes vim/vim#2656) https://github.com/vim/vim/commit/81226e03102dd00b7cdce0e00775e1e30462f9a6 --- src/nvim/screen.c | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) (limited to 'src/nvim/screen.c') diff --git a/src/nvim/screen.c b/src/nvim/screen.c index 28a1b65fff..edddfd8ed3 100644 --- a/src/nvim/screen.c +++ b/src/nvim/screen.c @@ -6371,14 +6371,12 @@ void grid_del_lines(ScreenGrid *grid, int row, int line_count, int end, int col, } -/* - * show the current mode and ruler - * - * If clear_cmdline is TRUE, clear the rest of the cmdline. - * If clear_cmdline is FALSE there may be a message there that needs to be - * cleared only if a mode is shown. - * Return the length of the message (0 if no message). - */ +// Show the current mode and ruler. +// +// If clear_cmdline is TRUE, clear the rest of the cmdline. +// If clear_cmdline is FALSE there may be a message there that needs to be +// cleared only if a mode is shown. +// Return the length of the message (0 if no message). int showmode(void) { int need_clear; -- cgit