mirror of
https://github.com/neovim/neovim.git
synced 2025-09-20 02:08:17 +00:00
refactor: make error message definitions const
message.c functions now take const char * as a format. Error message definitions can be made const.
This commit is contained in:
@@ -1055,7 +1055,7 @@ void ex_break(exarg_T *eap)
|
||||
void ex_endwhile(exarg_T *eap)
|
||||
{
|
||||
cstack_T *const cstack = eap->cstack;
|
||||
char *err;
|
||||
const char *err;
|
||||
int csf;
|
||||
|
||||
if (eap->cmdidx == CMD_endwhile) {
|
||||
|
Reference in New Issue
Block a user