Remove NUL macro

This commit is contained in:
Marco Hinz
2014-04-29 21:56:49 +02:00
committed by Thiago de Arruda
parent 046debb935
commit 2e4613aecc
66 changed files with 2543 additions and 2544 deletions

View File

@@ -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");