diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2014-05-01 14:00:13 -0400 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2014-05-01 14:00:31 -0400 |
commit | 1b5217687abf8e1aeabaf4e5a64073177d56e593 (patch) | |
tree | ce4bac12fff08088724bee38bee9d96d33bfe416 /src/cursor_shape.c | |
parent | 3b77a62a77970a1c1aff5d50df396171ce24b464 (diff) | |
download | rneovim-1b5217687abf8e1aeabaf4e5a64073177d56e593.tar.gz rneovim-1b5217687abf8e1aeabaf4e5a64073177d56e593.tar.bz2 rneovim-1b5217687abf8e1aeabaf4e5a64073177d56e593.zip |
revert #652
reverting broad cosmetic/style change because:
- increases merge-conflicts
- increases overhead of merging upstream Vim patches
- reasons for change are ambiguous, so default to no change
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 14f22c5a6f..05d51e1c9d 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 != '\0') { + while (*modep != NUL) { colonp = vim_strchr(modep, ':'); if (colonp == NULL) return (char_u *)N_("E545: Missing colon"); |