From: Andrea Corallo Date: Sun, 15 Dec 2019 14:06:07 +0000 (+0100) Subject: remove ifdef where unnecessary and add where they are X-Git-Tag: emacs-28.0.90~2727^2~918 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=740462da6153b111a8196b003791a55c7f7fa878;p=emacs.git remove ifdef where unnecessary and add where they are --- 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 {