aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/option.c
diff options
context:
space:
mode:
authorMichael Reed <m.reed@mykolab.com>2015-05-01 16:49:37 -0400
committerMichael Reed <m.reed@mykolab.com>2015-05-01 16:49:37 -0400
commit205466830207a920c62146b7b689fac2e395431a (patch)
treefa720c8066d58f6d5e173930ab5b4096ce09b9d4 /src/nvim/option.c
parentcc76c5b0cfb6233ff36949a4422d59cd4bc6efd5 (diff)
parent71592a06fd1be6632bdadfd1481c33cc5b79632d (diff)
downloadrneovim-205466830207a920c62146b7b689fac2e395431a.tar.gz
rneovim-205466830207a920c62146b7b689fac2e395431a.tar.bz2
rneovim-205466830207a920c62146b7b689fac2e395431a.zip
Merge pull request #2493 from Pyrohh/cleanup-patches-misc
[RFC] vim-patch: 7.4.{389, 659} + small cleanup
Diffstat (limited to 'src/nvim/option.c')
-rw-r--r--src/nvim/option.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/nvim/option.c b/src/nvim/option.c
index 1a7d161c62..33e3f5b459 100644
--- a/src/nvim/option.c
+++ b/src/nvim/option.c
@@ -4347,7 +4347,7 @@ did_set_string_option (
}
if (curwin->w_curswant != MAXCOL
- && (options[opt_idx].flags & (P_CURSWANT | P_RCLR)) != 0)
+ && (options[opt_idx].flags & (P_CURSWANT | P_RALL)) != 0)
curwin->w_set_curswant = TRUE;
check_redraw(options[opt_idx].flags);
@@ -4988,7 +4988,7 @@ set_bool_option (
comp_col(); /* in case 'ruler' or 'showcmd' changed */
if (curwin->w_curswant != MAXCOL
- && (options[opt_idx].flags & (P_CURSWANT | P_RCLR)) != 0)
+ && (options[opt_idx].flags & (P_CURSWANT | P_RALL)) != 0)
curwin->w_set_curswant = TRUE;
check_redraw(options[opt_idx].flags);
@@ -5360,7 +5360,7 @@ set_num_option (
comp_col(); /* in case 'columns' or 'ls' changed */
if (curwin->w_curswant != MAXCOL
- && (options[opt_idx].flags & (P_CURSWANT | P_RCLR)) != 0)
+ && (options[opt_idx].flags & (P_CURSWANT | P_RALL)) != 0)
curwin->w_set_curswant = TRUE;
check_redraw(options[opt_idx].flags);