diff options
| author | Michael Albinus | 2024-01-23 19:24:29 +0100 |
|---|---|---|
| committer | Michael Albinus | 2024-01-23 19:24:29 +0100 |
| commit | 13c7249105ec0d1a070c6d4e9f73f3c21d905bc8 (patch) | |
| tree | 9f973174c538d5dd2186b136547e738df0f00439 /admin/cus-test.el | |
| parent | 87cf30fba37346a179c6307a29d5d39b39311cef (diff) | |
| download | emacs-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.el | 7 |
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) |