aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/syntax.c
diff options
context:
space:
mode:
authorDundar Göc <gocdundar@gmail.com>2021-10-12 18:21:12 +0200
committerDundar Göc <gocdundar@gmail.com>2021-10-19 15:20:33 +0200
commit6059784770c4c88fb6fe528b9f7634192fa1164e (patch)
treecc91a6759c739044a5a338bc938cfa033d7273ac /src/nvim/syntax.c
parent38dd53c525054daf83dba27d7d46e90e8b41fa50 (diff)
downloadrneovim-6059784770c4c88fb6fe528b9f7634192fa1164e.tar.gz
rneovim-6059784770c4c88fb6fe528b9f7634192fa1164e.tar.bz2
rneovim-6059784770c4c88fb6fe528b9f7634192fa1164e.zip
refactor: remove space after star
Diffstat (limited to 'src/nvim/syntax.c')
-rw-r--r--src/nvim/syntax.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/syntax.c b/src/nvim/syntax.c
index 3afc2aff52..1e14f988f1 100644
--- a/src/nvim/syntax.c
+++ b/src/nvim/syntax.c
@@ -7728,7 +7728,7 @@ static int syn_add_group(char_u *name)
char *const name_up = (char *)vim_strsave_up(name);
// Append another syntax_highlight entry.
- struct hl_group * hlgp = GA_APPEND_VIA_PTR(struct hl_group, &highlight_ga);
+ struct hl_group *hlgp = GA_APPEND_VIA_PTR(struct hl_group, &highlight_ga);
memset(hlgp, 0, sizeof(*hlgp));
hlgp->sg_name = name;
hlgp->sg_rgb_bg = -1;