*: Fix linter errors

This commit is contained in:
ZyX
2017-02-15 03:15:47 +03:00
parent efa2682e3b
commit 095e6cc2e0
16 changed files with 148 additions and 141 deletions

View File

@@ -3227,7 +3227,7 @@ showmap (
while (++len <= 3)
msg_putchar(' ');
/* Display the LHS. Get length of what we write. */
// Display the LHS. Get length of what we write.
len = (size_t)msg_outtrans_special(mp->m_keys, true);
do {
msg_putchar(' '); /* padd with blanks */
@@ -3252,8 +3252,8 @@ showmap (
if (*mp->m_str == NUL) {
msg_puts_attr("<Nop>", hl_attr(HLF_8));
} else {
/* Remove escaping of CSI, because "m_str" is in a format to be used
* as typeahead. */
// Remove escaping of CSI, because "m_str" is in a format to be used
// as typeahead.
char_u *s = vim_strsave(mp->m_str);
vim_unescape_csi(s);
msg_outtrans_special(s, FALSE);