summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam Steingold <sds@gnu.org>2021-12-20 13:22:42 -0500
committerSam Steingold <sds@gnu.org>2021-12-20 13:25:46 -0500
commit27be90154d1a4b19efe30c97f221b29e3becc920 (patch)
tree398ddbc2d7a067a4cf1f1d35eefe573a306fb862
parent6e050a4da7a175c590e9efae97891cf8ac85a887 (diff)
downloademacs-27be90154d1a4b19efe30c97f221b29e3becc920.tar.gz
Fix build in a separate directory (bug#52669)
* src/lisp.h: Include <globals.h> instead of "globals.h"
-rw-r--r--src/lisp.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lisp.h b/src/lisp.h
index 92ab05b4228..1518d4a8690 100644
--- a/src/lisp.h
+++ b/src/lisp.h
@@ -954,7 +954,7 @@ typedef EMACS_UINT Lisp_Word_tag;
? ((y) - 1 + (x)) & ~ ((y) - 1) \
: ((y) - 1 + (x)) - ((y) - 1 + (x)) % (y))
-#include "globals.h"
+#include <globals.h>
/* Header of vector-like objects. This documents the layout constraints on
vectors and pseudovectors (objects of PVEC_xxx subtype). It also prevents