From 5e98a41872bafc781a75925e0de28c8c7a60889d Mon Sep 17 00:00:00 2001 From: zeertzjq Date: Tue, 16 Aug 2022 14:16:03 +0800 Subject: vim-patch:8.1.1869: code for the argument list is spread out (#19791) Problem: Code for the argument list is spread out. Solution: Put argument list code in arglist.c. (Yegappan Lakshmanan, closes vim/vim#4819) https://github.com/vim/vim/commit/4ad62155a1015751a6645aaecd94b02c94c8934b --- src/nvim/memory.c | 1 + 1 file changed, 1 insertion(+) (limited to 'src/nvim/memory.c') diff --git a/src/nvim/memory.c b/src/nvim/memory.c index 2d473aa66b..13a0b79fb2 100644 --- a/src/nvim/memory.c +++ b/src/nvim/memory.c @@ -9,6 +9,7 @@ #include #include "nvim/api/extmark.h" +#include "nvim/arglist.h" #include "nvim/context.h" #include "nvim/decoration_provider.h" #include "nvim/eval.h" -- cgit