diff options
author | Marco Hinz <mh.codebro@gmail.com> | 2014-04-29 21:56:49 +0200 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2014-04-29 17:51:09 -0300 |
commit | 2e4613aecc712eb5e893d341da5f571f932376d5 (patch) | |
tree | 41f6b1c751181319d88cc0fdb7aed61bf732701d /src/cursor_shape.c | |
parent | 046debb9359c85e2f2bc5c6d9481dac0025c6a80 (diff) | |
download | rneovim-2e4613aecc712eb5e893d341da5f571f932376d5.tar.gz rneovim-2e4613aecc712eb5e893d341da5f571f932376d5.tar.bz2 rneovim-2e4613aecc712eb5e893d341da5f571f932376d5.zip |
Remove NUL macro
Diffstat (limited to 'src/cursor_shape.c')
-rw-r--r-- | src/cursor_shape.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cursor_shape.c b/src/cursor_shape.c index 05d51e1c9d..14f22c5a6f 100644 --- a/src/cursor_shape.c +++ b/src/cursor_shape.c @@ -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"); |