From 6dff825a9943434cfccd64916c506ab10977acf8 Mon Sep 17 00:00:00 2001 From: Matt Armstrong Date: Thu, 6 Oct 2022 09:36:24 -0700 Subject: [PATCH 1/4] ; * src/itree.h: include "lisp.h" for Lisp_Object --- src/itree.c | 2 +- src/itree.h | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/itree.c b/src/itree.c index ed31ef1156..a782410860 100644 --- a/src/itree.c +++ b/src/itree.c @@ -19,7 +19,7 @@ Copyright (C) 2017-2022 Free Software Foundation, Inc. #include #include -#include "lisp.h" + #include "itree.h" /* diff --git a/src/itree.h b/src/itree.h index 8f6bb667d6..9b79551f77 100644 --- a/src/itree.h +++ b/src/itree.h @@ -23,6 +23,8 @@ #define ITREE_H #include #include +#include "lisp.h" + /* The tree and node structs are mainly here, so they can be allocated. NOTE: The only time where it is safe to modify node.begin and -- 2.35.1