diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2021-10-19 06:51:42 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-19 06:51:42 -0700 |
commit | aac15cf4ade5cb67000abe171ff8e2060b78907e (patch) | |
tree | cc91a6759c739044a5a338bc938cfa033d7273ac /src/nvim/screen.c | |
parent | 29b718d04c474433977e952ac7f3561041f3bda0 (diff) | |
parent | 6059784770c4c88fb6fe528b9f7634192fa1164e (diff) | |
download | rneovim-aac15cf4ade5cb67000abe171ff8e2060b78907e.tar.gz rneovim-aac15cf4ade5cb67000abe171ff8e2060b78907e.tar.bz2 rneovim-aac15cf4ade5cb67000abe171ff8e2060b78907e.zip |
Merge #16000 refactor: uncrustify
Diffstat (limited to 'src/nvim/screen.c')
-rw-r--r-- | src/nvim/screen.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/screen.c b/src/nvim/screen.c index c65fd3a90b..32eb28e761 100644 --- a/src/nvim/screen.c +++ b/src/nvim/screen.c @@ -166,7 +166,7 @@ static bool resizing = false; #endif #define SEARCH_HL_PRIORITY 0 -static char * provider_err = NULL; +static char *provider_err = NULL; static bool provider_invoke(NS ns_id, const char *name, LuaRef ref, Array args, bool default_true) { @@ -2418,7 +2418,7 @@ static int win_line(win_T *wp, linenr_T lnum, int startrow, int endrow, bool noc // If this line has a sign with line highlighting set line_attr. // TODO(bfredl, vigoux): this should not take priority over decoration! - sign_attrs_T * sattr = sign_get_attr(SIGN_LINEHL, sattrs, 0, 1); + sign_attrs_T *sattr = sign_get_attr(SIGN_LINEHL, sattrs, 0, 1); if (sattr != NULL) { line_attr = sattr->sat_linehl; } |