From 13c7249105ec0d1a070c6d4e9f73f3c21d905bc8 Mon Sep 17 00:00:00 2001 From: Michael Albinus Date: Tue, 23 Jan 2024 19:24:29 +0100 Subject: [PATCH] Fix cus-test-deps * admin/cus-test.el (cus-test-deps): Add the "quail/" subdirectory to default-directory, temporarily. --- admin/cus-test.el | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/admin/cus-test.el b/admin/cus-test.el index 68907f4f5e5..10d6e34358d 100644 --- a/admin/cus-test.el +++ b/admin/cus-test.el @@ -424,7 +424,12 @@ in the Emacs source directory." (mapatoms ;; This code is mainly from `custom-load-symbol'. (lambda (symbol) - (let ((custom-load-recursion t)) + (let ((custom-load-recursion t) + (load-path + (cons + (expand-file-name + "quail" (file-name-directory (locate-library leim-list-file-name))) + load-path))) (dolist (load (get symbol 'custom-loads)) (cond ((symbolp load)