]> git.eshelyaron.com Git - emacs.git/commitdiff
remove ifdef where unnecessary and add where they are
authorAndrea Corallo <akrl@sdf.org>
Sun, 15 Dec 2019 14:06:07 +0000 (15:06 +0100)
committerAndrea Corallo <akrl@sdf.org>
Wed, 1 Jan 2020 10:38:12 +0000 (11:38 +0100)
src/lisp.h

index 56aa7b151e67fa6c1396e15f56c7cc5dc8c3eb62..25319047a69db7633e85829cb68fe0c2769cfa63 100644 (file)
@@ -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
   {