diff options
author | Petter Wahlman <pwahlman@cisco.com> | 2014-03-16 08:20:00 +0100 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2014-03-19 07:53:16 -0300 |
commit | edabc6f4c7277262568801ff870808170ac32327 (patch) | |
tree | 9e34374d5d6a2816a0bc432bab84e540be9d3f18 /src/cursor_shape.c | |
parent | 59f2430a8d543fc57a31d489a649ec87a6ca9715 (diff) | |
download | rneovim-edabc6f4c7277262568801ff870808170ac32327.tar.gz rneovim-edabc6f4c7277262568801ff870808170ac32327.tar.bz2 rneovim-edabc6f4c7277262568801ff870808170ac32327.zip |
adapt to the style guildelines
semi-automated harvest of low hanging fruit:
change the unorthodox use of whitespace.
Diffstat (limited to 'src/cursor_shape.c')
-rw-r--r-- | src/cursor_shape.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/cursor_shape.c b/src/cursor_shape.c index 1e49cb3f43..05d51e1c9d 100644 --- a/src/cursor_shape.c +++ b/src/cursor_shape.c @@ -142,7 +142,7 @@ char_u *parse_shape_opt(int what) shape_table[idx].shape = SHAPE_HOR; shape_table[idx].percentage = n; } - } else if (round == 2) { + } else if (round == 2) { if (len == 9) shape_table[idx].blinkwait = n; else if (len == 7) @@ -150,11 +150,11 @@ char_u *parse_shape_opt(int what) else shape_table[idx].blinkoff = n; } - } else if (STRNICMP(p, "block", 5) == 0) { + } else if (STRNICMP(p, "block", 5) == 0) { if (round == 2) shape_table[idx].shape = SHAPE_BLOCK; p += 5; - } else { /* must be a highlight group name then */ + } else { /* must be a highlight group name then */ endp = vim_strchr(p, '-'); if (commap == NULL) { /* last part */ if (endp == NULL) |