diff options
author | Jan Edmund Lazo <janedmundlazo@hotmail.com> | 2018-07-30 16:19:36 -0400 |
---|---|---|
committer | Jan Edmund Lazo <janedmundlazo@hotmail.com> | 2018-07-30 16:19:38 -0400 |
commit | 1c5eee3c91b5a308c30a50f3f174543aa84b0090 (patch) | |
tree | bf0470df943dedb90a6e10c95fb316849b14c824 /src/nvim/syntax.c | |
parent | 8f647cf03c7fe1f74edce5a98cf8d460a8aa331a (diff) | |
download | rneovim-1c5eee3c91b5a308c30a50f3f174543aa84b0090.tar.gz rneovim-1c5eee3c91b5a308c30a50f3f174543aa84b0090.tar.bz2 rneovim-1c5eee3c91b5a308c30a50f3f174543aa84b0090.zip |
syntax: add const to get_syntax_attr() params
Diffstat (limited to 'src/nvim/syntax.c')
-rw-r--r-- | src/nvim/syntax.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/nvim/syntax.c b/src/nvim/syntax.c index 0e40677f8b..b612e5b66a 100644 --- a/src/nvim/syntax.c +++ b/src/nvim/syntax.c @@ -1568,9 +1568,9 @@ syn_finish_line( */ int get_syntax_attr( - colnr_T col, - bool *can_spell, - int keep_state /* keep state of char at "col" */ + const colnr_T col, + bool *const can_spell, + const bool keep_state // keep state of char at "col" ) { int attr = 0; |