diff options
author | Andrea Corallo <akrl@sdf.org> | 2020-05-24 22:49:38 +0100 |
---|---|---|
committer | Andrea Corallo <akrl@sdf.org> | 2020-05-24 22:49:38 +0100 |
commit | 2bc41e0963275e77ca3627fbfd754fcc041405cb (patch) | |
tree | 0269fee078461b3b2987881958c7a186004ec0c9 /src/comp.c | |
parent | 0bba0e367b4b5378501de7c91838ea2de8b4af4a (diff) | |
download | emacs-2bc41e0963275e77ca3627fbfd754fcc041405cb.tar.gz emacs-2bc41e0963275e77ca3627fbfd754fcc041405cb.tar.bz2 emacs-2bc41e0963275e77ca3627fbfd754fcc041405cb.zip |
; Ease ifdef navigation in native-comp files
* src/comp.c (syms_of_comp): Add a comment to ease #endif
understading.
* src/comp.h: Likewise.
Diffstat (limited to 'src/comp.c')
-rw-r--r-- | src/comp.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/comp.c b/src/comp.c index b4e3e2e887f..32a98173d53 100644 --- a/src/comp.c +++ b/src/comp.c @@ -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); } |