diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2019-11-11 22:10:37 -0800 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2019-11-11 22:12:59 -0800 |
commit | a24eff0e2762657b4a82b2a7e78b4246f6462f95 (patch) | |
tree | 944f02de6bfa974248700f4da1c881638fbde243 /src/nvim/mark_extended.h | |
parent | 2d7e1c32a87655b78cd23f2a3ad9a7a140493bd5 (diff) | |
download | rneovim-a24eff0e2762657b4a82b2a7e78b4246f6462f95.tar.gz rneovim-a24eff0e2762657b4a82b2a7e78b4246f6462f95.tar.bz2 rneovim-a24eff0e2762657b4a82b2a7e78b4246f6462f95.zip |
extmark: fix spelling of "Extmark"
The spelling "Extmark" is used almost everywhere, so don't spell it
"ExtMark" inconsistently.
Diffstat (limited to 'src/nvim/mark_extended.h')
-rw-r--r-- | src/nvim/mark_extended.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/nvim/mark_extended.h b/src/nvim/mark_extended.h index b81adfaaef..ee1da26875 100644 --- a/src/nvim/mark_extended.h +++ b/src/nvim/mark_extended.h @@ -15,12 +15,12 @@ // see FOR_ALL_? for documentation #define FOR_ALL_EXTMARKLINES(buf, l_lnum, u_lnum, code)\ kbitr_t(extmarklines) itr;\ - ExtMarkLine t;\ + ExtmarkLine t;\ t.lnum = l_lnum;\ if (!kb_itr_get(extmarklines, &buf->b_extlines, &t, &itr)) { \ kb_itr_next(extmarklines, &buf->b_extlines, &itr);\ }\ - ExtMarkLine *extmarkline;\ + ExtmarkLine *extmarkline;\ for (; kb_itr_valid(&itr); kb_itr_next(extmarklines, \ &buf->b_extlines, &itr)) { \ extmarkline = kb_itr_key(&itr);\ @@ -33,12 +33,12 @@ // see FOR_ALL_? for documentation #define FOR_ALL_EXTMARKLINES_PREV(buf, l_lnum, u_lnum, code)\ kbitr_t(extmarklines) itr;\ - ExtMarkLine t;\ + ExtmarkLine t;\ t.lnum = u_lnum;\ if (!kb_itr_get(extmarklines, &buf->b_extlines, &t, &itr)) { \ kb_itr_prev(extmarklines, &buf->b_extlines, &itr);\ }\ - ExtMarkLine *extmarkline;\ + ExtmarkLine *extmarkline;\ for (; kb_itr_valid(&itr); kb_itr_prev(extmarklines, \ &buf->b_extlines, &itr)) { \ extmarkline = kb_itr_key(&itr);\ |