diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2017-02-27 09:59:58 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-27 09:59:58 +0100 |
commit | e502cca010357773252c686ef535bb2998aeb50b (patch) | |
tree | 8533cb3229c0de3e8e99b9ce1aff5660fa91277a /src/nvim/eval.c | |
parent | 73a054d84427191f70ea59fc6dc34314b28ad07c (diff) | |
parent | c484323dc67fbca10a2f3da3d6e65efdb3c678c3 (diff) | |
download | rneovim-e502cca010357773252c686ef535bb2998aeb50b.tar.gz rneovim-e502cca010357773252c686ef535bb2998aeb50b.tar.bz2 rneovim-e502cca010357773252c686ef535bb2998aeb50b.zip |
Merge #6142 from justinmk/term-modifiable
terminal: 'modifiable'; 'scrollback'; follow output only if cursor is on last line
Diffstat (limited to 'src/nvim/eval.c')
-rw-r--r-- | src/nvim/eval.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/eval.c b/src/nvim/eval.c index 57c2368523..49644d70ef 100644 --- a/src/nvim/eval.c +++ b/src/nvim/eval.c @@ -5845,8 +5845,8 @@ bool garbage_collect(bool testing) garbage_collect_at_exit = false; } - // We advance by two because we add one for items referenced through - // previous_funccal. + // We advance by two (COPYID_INC) because we add one for items referenced + // through previous_funccal. const int copyID = get_copyID(); // 1. Go through all accessible variables and mark all lists and dicts |