syntax: add const to get_syntax_attr() params

This commit is contained in:
Jan Edmund Lazo
2018-07-30 16:19:36 -04:00
parent 8f647cf03c
commit 1c5eee3c91
2 changed files with 4 additions and 5 deletions

View File

@@ -3294,8 +3294,7 @@ win_line (
did_emsg = FALSE; did_emsg = FALSE;
syntax_attr = get_syntax_attr((colnr_T)v - 1, syntax_attr = get_syntax_attr((colnr_T)v - 1,
has_spell ? &can_spell : has_spell ? &can_spell : NULL, false);
NULL, FALSE);
if (did_emsg) { if (did_emsg) {
wp->w_s->b_syn_error = TRUE; wp->w_s->b_syn_error = TRUE;

View File

@@ -1568,9 +1568,9 @@ syn_finish_line(
*/ */
int int
get_syntax_attr( get_syntax_attr(
colnr_T col, const colnr_T col,
bool *can_spell, bool *const can_spell,
int keep_state /* keep state of char at "col" */ const bool keep_state // keep state of char at "col"
) )
{ {
int attr = 0; int attr = 0;