mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
clang bug: Dead assignment ns_id
Remove a dead assignment of the `ns_id` variable in the `src/nvim/api/buffer.c` file. Refer: https://neovim.io/doc/reports/clang/report-f279da.html#EndPath
This commit is contained in:
parent
d9657b3ae2
commit
a26943e9b3
@ -1420,10 +1420,10 @@ Integer nvim_buf_add_highlight(Buffer buffer,
|
|||||||
end_line++;
|
end_line++;
|
||||||
}
|
}
|
||||||
|
|
||||||
ns_id = extmark_add_decoration(buf, ns_id, hlg_id,
|
extmark_add_decoration(buf, ns_id, hlg_id,
|
||||||
(int)line, (colnr_T)col_start,
|
(int)line, (colnr_T)col_start,
|
||||||
end_line, (colnr_T)col_end,
|
end_line, (colnr_T)col_end,
|
||||||
VIRTTEXT_EMPTY);
|
VIRTTEXT_EMPTY);
|
||||||
return src_id;
|
return src_id;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user