diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2020-04-26 02:52:39 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-26 02:52:39 -0400 |
commit | 3de9452abf182519fd9a015fe489a37d14aa78d9 (patch) | |
tree | bf088b92858967ae791579bbc9faf39800207302 /src/nvim/change.c | |
parent | 68511924d02af03812ae4b56aea6d94009f8096e (diff) | |
parent | 4d8b66e4978f6a7b59e35ac27ec0d96c0ebc011a (diff) | |
download | rneovim-3de9452abf182519fd9a015fe489a37d14aa78d9.tar.gz rneovim-3de9452abf182519fd9a015fe489a37d14aa78d9.tar.bz2 rneovim-3de9452abf182519fd9a015fe489a37d14aa78d9.zip |
Merge #12177 'folds: decrease reliance on globals'
Diffstat (limited to 'src/nvim/change.c')
-rw-r--r-- | src/nvim/change.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/change.c b/src/nvim/change.c index a341b8fce1..51afb40b40 100644 --- a/src/nvim/change.c +++ b/src/nvim/change.c @@ -361,8 +361,8 @@ void changed_bytes(linenr_T lnum, colnr_T col) /// insert/delete bytes at column /// -/// Like changed_bytes() but also adjust extmark for "added" bytes. -/// When "added" is negative text was deleted. +/// Like changed_bytes() but also adjust extmark for "new" bytes. +/// When "new" is negative text was deleted. static void inserted_bytes(linenr_T lnum, colnr_T col, int old, int new) { if (curbuf_splice_pending == 0) { |