diff options
Diffstat (limited to 'src/nvim/mark_extended.h')
-rw-r--r-- | src/nvim/mark_extended.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/nvim/mark_extended.h b/src/nvim/mark_extended.h index b8b766b243..b81adfaaef 100644 --- a/src/nvim/mark_extended.h +++ b/src/nvim/mark_extended.h @@ -51,7 +51,7 @@ // see FOR_ALL_? for documentation #define FOR_ALL_EXTMARKS(buf, ns, l_lnum, l_col, u_lnum, u_col, code)\ kbitr_t(markitems) mitr;\ - ExtendedMark mt;\ + Extmark mt;\ mt.ns_id = ns;\ mt.mark_id = 0;\ mt.line = NULL;\ @@ -60,7 +60,7 @@ if (!kb_itr_get(markitems, &extmarkline->items, mt, &mitr)) { \ kb_itr_next(markitems, &extmarkline->items, &mitr);\ } \ - ExtendedMark *extmark;\ + Extmark *extmark;\ for (; \ kb_itr_valid(&mitr); \ kb_itr_next(markitems, &extmarkline->items, &mitr)) { \ @@ -77,7 +77,7 @@ // see FOR_ALL_? for documentation #define FOR_ALL_EXTMARKS_PREV(buf, ns, l_lnum, l_col, u_lnum, u_col, code)\ kbitr_t(markitems) mitr;\ - ExtendedMark mt;\ + Extmark mt;\ mt.mark_id = sizeof(uint64_t);\ mt.ns_id = ns;\ FOR_ALL_EXTMARKLINES_PREV(buf, l_lnum, u_lnum, { \ @@ -85,7 +85,7 @@ if (!kb_itr_get(markitems, &extmarkline->items, mt, &mitr)) { \ kb_itr_prev(markitems, &extmarkline->items, &mitr);\ } \ - ExtendedMark *extmark;\ + Extmark *extmark;\ for (; \ kb_itr_valid(&mitr); \ kb_itr_prev(markitems, &extmarkline->items, &mitr)) { \ @@ -101,7 +101,7 @@ #define FOR_ALL_EXTMARKS_IN_LINE(items, l_col, u_col, code)\ kbitr_t(markitems) mitr;\ - ExtendedMark mt;\ + Extmark mt;\ mt.ns_id = 0;\ mt.mark_id = 0;\ mt.line = NULL;\ @@ -110,7 +110,7 @@ if (!kb_itr_get(markitems, &items, mt, &mitr)) { \ kb_itr_next(markitems, &items, &mitr);\ } \ - ExtendedMark *extmark;\ + Extmark *extmark;\ for (; kb_itr_valid(&mitr); kb_itr_next(markitems, &items, &mitr)) { \ extmark = &kb_itr_key(&mitr);\ if (extmark->col > extmarkline_u_col) { \ @@ -126,7 +126,7 @@ typedef struct ExtmarkNs { // For namespacing extmarks } ExtmarkNs; -typedef kvec_t(ExtendedMark *) ExtmarkArray; +typedef kvec_t(Extmark *) ExtmarkArray; // Undo/redo extmarks |