diff options
Diffstat (limited to 'src/nvim/globals.h')
-rw-r--r-- | src/nvim/globals.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/nvim/globals.h b/src/nvim/globals.h index 8e773d691a..4144a7c8ac 100644 --- a/src/nvim/globals.h +++ b/src/nvim/globals.h @@ -474,10 +474,6 @@ EXTERN buf_T *curbuf INIT( = NULL); // currently active buffer #define FOR_ALL_BUF_WININFO(buf, wip) \ for ((wip) = (buf)->b_wininfo; (wip) != NULL; (wip) = (wip)->wi_next) // NOLINT -// Iterate through all the signs placed in a buffer -#define FOR_ALL_SIGNS_IN_BUF(buf, sign) \ - for ((sign) = (buf)->b_signlist; (sign) != NULL; (sign) = (sign)->se_next) // NOLINT - // List of files being edited (global argument list). curwin->w_alist points // to this when the window is using the global argument list. EXTERN alist_T global_alist; // global argument list |