diff options
| author | Sam Steingold | 2021-12-20 13:22:42 -0500 |
|---|---|---|
| committer | Sam Steingold | 2021-12-20 13:25:46 -0500 |
| commit | 27be90154d1a4b19efe30c97f221b29e3becc920 (patch) | |
| tree | 398ddbc2d7a067a4cf1f1d35eefe573a306fb862 /src | |
| parent | 6e050a4da7a175c590e9efae97891cf8ac85a887 (diff) | |
| download | emacs-27be90154d1a4b19efe30c97f221b29e3becc920.tar.gz emacs-27be90154d1a4b19efe30c97f221b29e3becc920.zip | |
Fix build in a separate directory (bug#52669)
* src/lisp.h: Include <globals.h> instead of "globals.h"
Diffstat (limited to 'src')
| -rw-r--r-- | src/lisp.h | 2 |
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; | |||
| 954 | ? ((y) - 1 + (x)) & ~ ((y) - 1) \ | 954 | ? ((y) - 1 + (x)) & ~ ((y) - 1) \ |
| 955 | : ((y) - 1 + (x)) - ((y) - 1 + (x)) % (y)) | 955 | : ((y) - 1 + (x)) - ((y) - 1 + (x)) % (y)) |
| 956 | 956 | ||
| 957 | #include "globals.h" | 957 | #include <globals.h> |
| 958 | 958 | ||
| 959 | /* Header of vector-like objects. This documents the layout constraints on | 959 | /* Header of vector-like objects. This documents the layout constraints on |
| 960 | vectors and pseudovectors (objects of PVEC_xxx subtype). It also prevents | 960 | vectors and pseudovectors (objects of PVEC_xxx subtype). It also prevents |