From 740462da6153b111a8196b003791a55c7f7fa878 Mon Sep 17 00:00:00 2001 From: Andrea Corallo Date: Sun, 15 Dec 2019 15:06:07 +0100 Subject: [PATCH] remove ifdef where unnecessary and add where they are --- src/lisp.h | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/lisp.h b/src/lisp.h index 56aa7b151e6..25319047a69 100644 --- a/src/lisp.h +++ b/src/lisp.h @@ -2088,17 +2088,15 @@ struct Lisp_Subr const char *symbol_name; union { const char *intspec; -#ifdef HAVE_NATIVE_COMP Lisp_Object native_intspec; -#endif }; union { EMACS_INT doc; -#ifdef HAVE_NATIVE_COMP Lisp_Object native_doc; -#endif }; +#ifdef HAVE_NATIVE_COMP bool native_elisp; +#endif } GCALIGNED_STRUCT; union Aligned_Lisp_Subr { -- 2.39.5