aboutsummaryrefslogtreecommitdiffstats
path: root/admin/cus-test.el
diff options
context:
space:
mode:
authorMichael Albinus2024-01-23 19:24:29 +0100
committerMichael Albinus2024-01-23 19:24:29 +0100
commit13c7249105ec0d1a070c6d4e9f73f3c21d905bc8 (patch)
tree9f973174c538d5dd2186b136547e738df0f00439 /admin/cus-test.el
parent87cf30fba37346a179c6307a29d5d39b39311cef (diff)
downloademacs-13c7249105ec0d1a070c6d4e9f73f3c21d905bc8.tar.gz
emacs-13c7249105ec0d1a070c6d4e9f73f3c21d905bc8.zip
Fix cus-test-deps
* admin/cus-test.el (cus-test-deps): Add the "quail/" subdirectory to default-directory, temporarily.
Diffstat (limited to 'admin/cus-test.el')
-rw-r--r--admin/cus-test.el7
1 files changed, 6 insertions, 1 deletions
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."
424 (mapatoms 424 (mapatoms
425 ;; This code is mainly from `custom-load-symbol'. 425 ;; This code is mainly from `custom-load-symbol'.
426 (lambda (symbol) 426 (lambda (symbol)
427 (let ((custom-load-recursion t)) 427 (let ((custom-load-recursion t)
428 (load-path
429 (cons
430 (expand-file-name
431 "quail" (file-name-directory (locate-library leim-list-file-name)))
432 load-path)))
428 (dolist (load (get symbol 'custom-loads)) 433 (dolist (load (get symbol 'custom-loads))
429 (cond 434 (cond
430 ((symbolp load) 435 ((symbolp load)