Preload paren.el
authorEli Zaretskii <eliz@gnu.org>
Sat, 2 Oct 2021 08:06:18 +0000 (11:06 +0300)
committerEli Zaretskii <eliz@gnu.org>
Sat, 2 Oct 2021 08:06:18 +0000 (11:06 +0300)
* lisp/Makefile.in (COMPILE_FIRST): Add the dependencies of
comp.el, so that they are natively-compiled in advance.
* lisp/loadup.el ("paren"): Preload paren.el. (Bug#50934)

lisp/Makefile.in
lisp/loadup.el

index 60d1d10e5b2c1ae8f11315d052ed7f391621b9a7..3e764c5a78791700e785b1ec2dbb4e6d98ece6e3 100644 (file)
@@ -91,8 +91,19 @@ COMPILE_FIRST = \
        $(lisp)/emacs-lisp/byte-opt.elc \
        $(lisp)/emacs-lisp/bytecomp.elc
 ifeq ($(HAVE_NATIVE_COMP),yes)
-COMPILE_FIRST += $(lisp)/emacs-lisp/comp.elc
-COMPILE_FIRST += $(lisp)/emacs-lisp/comp-cstr.elc
+COMPILE_FIRST += \
+       $(lisp)/emacs-lisp/comp.elc \
+       $(lisp)/emacs-lisp/comp-cstr.elc \
+       $(lisp)/emacs-lisp/cl-macs.elc \
+       $(lisp)/emacs-lisp/rx.elc \
+       $(lisp)/emacs-lisp/cl-seq.elc \
+       $(lisp)/help-mode.elc \
+       $(lisp)/emacs-lisp/cl-extra.elc \
+       $(lisp)/emacs-lisp/gv.elc \
+       $(lisp)/emacs-lisp/seq.elc \
+       $(lisp)/emacs-lisp/cl-lib.elc \
+       $(lisp)/emacs-lisp/warnings.elc \
+       $(lisp)/emacs-lisp/subr-x.elc
 endif
 COMPILE_FIRST += $(lisp)/emacs-lisp/autoload.elc
 
index af997441d2e1ce8dffc7127157068dd0f58aeaf8..3fb6b813285b844b7d4d136056f06c884b2f9235 100644 (file)
 (load "vc/ediff-hook")
 (load "uniquify")
 (load "electric")
+(load "paren")
 
 (load "shorthands")
 (setq load-source-file-function #'load-with-shorthands-and-code-conversion)