aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJens Schmidt2023-12-14 20:47:22 +0100
committerEli Zaretskii2023-12-16 15:05:46 +0200
commit47b10d062df643da6ecc6fc3b6b1cbb668eebb39 (patch)
tree79302257df75ced54ee7c5348db9fc4c0029bf34
parent75add076ba507f49092f260572f6762403db5389 (diff)
downloademacs-47b10d062df643da6ecc6fc3b6b1cbb668eebb39.tar.gz
emacs-47b10d062df643da6ecc6fc3b6b1cbb668eebb39.zip
; Move preload of rmc to a more appropriate place
See discussion on https://lists.gnu.org/archive/html/emacs-devel/2023-12/msg00309.html. * lisp/loadup.el ("emacs-lisp/rmc"): Move preload to a more appropriate place.
-rw-r--r--lisp/loadup.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/loadup.el b/lisp/loadup.el
index 1f959464b23..d2a4c6a7cf7 100644
--- a/lisp/loadup.el
+++ b/lisp/loadup.el
@@ -387,6 +387,9 @@
387 (load "tooltip")) 387 (load "tooltip"))
388(load "international/iso-transl") ; Binds Alt-[ and friends. 388(load "international/iso-transl") ; Binds Alt-[ and friends.
389 389
390;; Used by `kill-buffer', for instance.
391(load "emacs-lisp/rmc")
392
390;; This file doesn't exist when building a development version of Emacs 393;; This file doesn't exist when building a development version of Emacs
391;; from the repository. It is generated just after temacs is built. 394;; from the repository. It is generated just after temacs is built.
392(load "leim/leim-list.el" t) 395(load "leim/leim-list.el" t)
@@ -406,9 +409,6 @@
406 (message "Warning: Change in load-path due to site-load will be \ 409 (message "Warning: Change in load-path due to site-load will be \
407lost after dumping"))) 410lost after dumping")))
408 411
409;; Used by `kill-buffer', for instance.
410(load "emacs-lisp/rmc")
411
412;; Actively check for advised functions during preload since: 412;; Actively check for advised functions during preload since:
413;; - advices in Emacs's core are generally considered bad style; 413;; - advices in Emacs's core are generally considered bad style;
414;; - `Snarf-documentation' looses docstrings of primitives advised 414;; - `Snarf-documentation' looses docstrings of primitives advised