comparison src/terminal.c @ 16162:cd5c83115ec6 v8.1.1086

patch 8.1.1086: too many curly braces commit https://github.com/vim/vim/commit/abab0b0fdd6535969447b03a4fffc1947918cf6c Author: Bram Moolenaar <Bram@vim.org> Date: Sat Mar 30 18:47:01 2019 +0100 patch 8.1.1086: too many curly braces Problem: Too many curly braces. Solution: Remove curly braces where they are not needed. (Hirohito Higashi, closes #3982)
author Bram Moolenaar <Bram@vim.org>
date Sat, 30 Mar 2019 19:00:07 +0100
parents e7b18ce9ea2d
children c1698187c482
comparison
equal deleted inserted replaced
16161:75fa84e2461b 16162:cd5c83115ec6
4197 * following "|", "@" or NL will indicate using the same 4197 * following "|", "@" or NL will indicate using the same
4198 * attributes. */ 4198 * attributes. */
4199 if (cell.width != prev_cell.width || !same_attr) 4199 if (cell.width != prev_cell.width || !same_attr)
4200 { 4200 {
4201 if (cell.width == 2) 4201 if (cell.width == 2)
4202 {
4203 fputs("*", fd); 4202 fputs("*", fd);
4204 }
4205 else 4203 else
4206 fputs("+", fd); 4204 fputs("+", fd);
4207 4205
4208 if (same_attr) 4206 if (same_attr)
4209 { 4207 {