diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/nvim/option.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/nvim/option.c b/src/nvim/option.c index 9dc29bbfd9..686dc4cc46 100644 --- a/src/nvim/option.c +++ b/src/nvim/option.c @@ -4160,10 +4160,6 @@ static char *set_num_option(int opt_idx, char_u *varp, long value, if (value < 0) { errmsg = e_positive; } - } else if (pp == &p_titlelen) { - if (value < 0) { - errmsg = e_positive; - } } else if (pp == &p_so) { if (value < 0 && full_screen) { errmsg = e_scroll; |