aboutsummaryrefslogtreecommitdiff
path: root/src/cursor_shape.c
diff options
context:
space:
mode:
authorMarco Hinz <mh.codebro@gmail.com>2014-04-29 21:56:49 +0200
committerThiago de Arruda <tpadilha84@gmail.com>2014-04-29 17:51:09 -0300
commit2e4613aecc712eb5e893d341da5f571f932376d5 (patch)
tree41f6b1c751181319d88cc0fdb7aed61bf732701d /src/cursor_shape.c
parent046debb9359c85e2f2bc5c6d9481dac0025c6a80 (diff)
downloadrneovim-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.c2
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");