mirror of
https://github.com/neovim/neovim.git
synced 2025-11-10 04:25:22 +00:00
Remove NUL macro
This commit is contained in:
committed by
Thiago de Arruda
parent
046debb935
commit
2e4613aecc
@@ -61,7 +61,7 @@ char_u *parse_shape_opt(int what)
|
||||
* Repeat for all comma separated parts.
|
||||
*/
|
||||
modep = p_guicursor;
|
||||
while (*modep != NUL) {
|
||||
while (*modep != '\0') {
|
||||
colonp = vim_strchr(modep, ':');
|
||||
if (colonp == NULL)
|
||||
return (char_u *)N_("E545: Missing colon");
|
||||
|
||||
Reference in New Issue
Block a user