1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-13 06:50:39 -08:00

; Ease ifdef navigation in native-comp files

* src/comp.c (syms_of_comp): Add a comment to ease #endif
understading.

* src/comp.h: Likewise.
This commit is contained in:
Andrea Corallo 2020-05-24 22:49:38 +01:00
parent 0bba0e367b
commit 2bc41e0963
2 changed files with 6 additions and 4 deletions

View file

@ -4722,7 +4722,8 @@ syms_of_comp (void)
doc: /* Hash table symbol-name -> function-value. For
internal use during */);
Vcomp_deferred_pending_h = CALLN (Fmake_hash_table, QCtest, Qeq);
#endif
#endif /* #ifdef HAVE_NATIVE_COMP */
defsubr (&Snative_comp_available_p);
}

View file

@ -100,7 +100,8 @@ extern void finish_delayed_disposal_of_comp_units (void);
extern void dispose_all_remaining_comp_units (void);
extern void clean_package_user_dir_of_old_comp_units (void);
#else
#else /* #ifdef HAVE_NATIVE_COMP */
static inline void
maybe_defer_native_compilation (Lisp_Object function_name,
@ -127,6 +128,6 @@ static inline void
finish_delayed_disposal_of_comp_units (void)
{}
#endif
#endif /* #ifdef HAVE_NATIVE_COMP */
#endif
#endif /* #ifndef COMP_H */