; 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.
This commit is contained in:
parent
75add076ba
commit
47b10d062d
1 changed files with 3 additions and 3 deletions
|
@ -387,6 +387,9 @@
|
|||
(load "tooltip"))
|
||||
(load "international/iso-transl") ; Binds Alt-[ and friends.
|
||||
|
||||
;; Used by `kill-buffer', for instance.
|
||||
(load "emacs-lisp/rmc")
|
||||
|
||||
;; This file doesn't exist when building a development version of Emacs
|
||||
;; from the repository. It is generated just after temacs is built.
|
||||
(load "leim/leim-list.el" t)
|
||||
|
@ -406,9 +409,6 @@
|
|||
(message "Warning: Change in load-path due to site-load will be \
|
||||
lost after dumping")))
|
||||
|
||||
;; Used by `kill-buffer', for instance.
|
||||
(load "emacs-lisp/rmc")
|
||||
|
||||
;; Actively check for advised functions during preload since:
|
||||
;; - advices in Emacs's core are generally considered bad style;
|
||||
;; - `Snarf-documentation' looses docstrings of primitives advised
|
||||
|
|
Loading…
Add table
Reference in a new issue