aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/option.c
diff options
context:
space:
mode:
authorThiago de Arruda <tpadilha84@gmail.com>2014-12-01 21:00:20 -0300
committerThiago de Arruda <tpadilha84@gmail.com>2014-12-02 07:15:06 -0300
commit05f8d261fe305741ea99c6da2096d890b1005bf7 (patch)
treed0e0f77facb117bb46bd17441b4499d463621bb3 /src/nvim/option.c
parent9ac2e8423a8118284b54cbf3586b57cb310acafa (diff)
downloadrneovim-05f8d261fe305741ea99c6da2096d890b1005bf7.tar.gz
rneovim-05f8d261fe305741ea99c6da2096d890b1005bf7.tar.bz2
rneovim-05f8d261fe305741ea99c6da2096d890b1005bf7.zip
term: Move "set_shellsize" to screen.c as "screen_resize"
Diffstat (limited to 'src/nvim/option.c')
-rw-r--r--src/nvim/option.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/option.c b/src/nvim/option.c
index ee70b5bf8a..79ded9f32f 100644
--- a/src/nvim/option.c
+++ b/src/nvim/option.c
@@ -5540,7 +5540,7 @@ set_num_option (
*pp = old_value;
else if (full_screen
)
- set_shellsize((int)Columns, (int)Rows, TRUE);
+ screen_resize((int)Columns, (int)Rows, TRUE);
else {
/* Postpone the resizing; check the size and cmdline position for
* messages. */