(defun update-leim-list-file (&rest dirs)
"Update LEIM list file in directories DIRS."
- ;; bug#46818: This `let'-binding is not necessary, but
- ;; it reduces the recursion depth during bootstrap (at which
- ;; point some of the core ELisp files haven't been byte-compiled
- ;; yet, which causes deeper-than-normal recursion).
- (let ((vc-handled-backends nil))
- (dolist (function update-leim-list-functions)
- (apply function dirs))))
+ (dolist (function update-leim-list-functions)
+ (apply function dirs)))
(defvar-local current-input-method nil
"The current input method for multilingual text.
init_eval_once (void)
{
/* Don't forget to update docs (lispref node "Local Variables"). */
- max_specpdl_size = 1600; /* 1500 is not enough for cl-generic.el. */
+ max_specpdl_size = 1800; /* See bug#46818. */
max_lisp_eval_depth = 800;
Vrun_hooks = Qnil;
pdumper_do_now_and_after_load (init_eval_once_for_pdumper);