diff options
| author | Markus Rost | 2002-10-14 20:28:24 +0000 |
|---|---|---|
| committer | Markus Rost | 2002-10-14 20:28:24 +0000 |
| commit | bf7a63e1f915758b59052b0662828b62d1192361 (patch) | |
| tree | f7bf3fa60eb1735d9241ee8a81ac5339d3a3e323 /admin | |
| parent | 9da940c51fde8673bc66033b69a1677c1190519f (diff) | |
| download | emacs-bf7a63e1f915758b59052b0662828b62d1192361.tar.gz emacs-bf7a63e1f915758b59052b0662828b62d1192361.zip | |
Undo previous change, but leave a comment.
(cus-test-opts): Call cus-test-load-libs.
Diffstat (limited to 'admin')
| -rw-r--r-- | admin/ChangeLog | 2 | ||||
| -rw-r--r-- | admin/cus-test.el | 10 |
2 files changed, 9 insertions, 3 deletions
diff --git a/admin/ChangeLog b/admin/ChangeLog index e4393040b85..b6ad402b94d 100644 --- a/admin/ChangeLog +++ b/admin/ChangeLog | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | 2002-10-14 Markus Rost <rost@math.ohio-state.edu> | 1 | 2002-10-14 Markus Rost <rost@math.ohio-state.edu> |
| 2 | 2 | ||
| 3 | * cus-test.el (cus-test-deps): Ignore libraries in lisp/term/. | 3 | * cus-test.el (cus-test-opts): Call cus-test-load-libs. |
| 4 | 4 | ||
| 5 | 2002-10-13 Markus Rost <rost@math.ohio-state.edu> | 5 | 2002-10-13 Markus Rost <rost@math.ohio-state.edu> |
| 6 | 6 | ||
diff --git a/admin/cus-test.el b/admin/cus-test.el index 9bdc51a05a6..bccdcca6c1f 100644 --- a/admin/cus-test.el +++ b/admin/cus-test.el | |||
| @@ -89,10 +89,13 @@ | |||
| 89 | ;; 4523 options tested | 89 | ;; 4523 options tested |
| 90 | ;; The following variables might have problems: | 90 | ;; The following variables might have problems: |
| 91 | ;; ps-mule-font-info-database-default | 91 | ;; ps-mule-font-info-database-default |
| 92 | ;; grep-tree-command | ||
| 93 | ;; grep-find-command | ||
| 92 | ;; | 94 | ;; |
| 93 | ;; 288 features required | 95 | ;; 288 features required |
| 94 | ;; 10 files loaded | 96 | ;; 10 files loaded |
| 95 | ;; The following load problems appeared: | 97 | ;; The following load problems appeared: |
| 98 | ;; (killing x-win (file-error Cannot open load file x-win)) | ||
| 96 | ;; Symbol faces has loaddefs as custom dependency | 99 | ;; Symbol faces has loaddefs as custom dependency |
| 97 | ;; (reftex-index-support reftex-vars (void-function reftex-set-dirty)) | 100 | ;; (reftex-index-support reftex-vars (void-function reftex-set-dirty)) |
| 98 | ;; (eshell-script em-script (void-variable eshell-directory-name)) | 101 | ;; (eshell-script em-script (void-variable eshell-directory-name)) |
| @@ -348,6 +351,8 @@ This function is suitable for batch mode. E.g., invoke | |||
| 348 | 351 | ||
| 349 | in the emacs source directory." | 352 | in the emacs source directory." |
| 350 | (interactive) | 353 | (interactive) |
| 354 | (message "Running %s" 'cus-test-load-libs) | ||
| 355 | (cus-test-load-libs) | ||
| 351 | (message "Running %s" 'cus-test-load-custom-loads) | 356 | (message "Running %s" 'cus-test-load-custom-loads) |
| 352 | (cus-test-load-custom-loads) | 357 | (cus-test-load-custom-loads) |
| 353 | (message "Running %s" 'cus-test-apropos) | 358 | (message "Running %s" 'cus-test-apropos) |
| @@ -407,8 +412,9 @@ in the emacs source directory." | |||
| 407 | ;; We are still loading it when we call this, | 412 | ;; We are still loading it when we call this, |
| 408 | ;; and it is not in load-history yet. | 413 | ;; and it is not in load-history yet. |
| 409 | ((equal load "cus-edit")) | 414 | ((equal load "cus-edit")) |
| 410 | ;; In this test, we don't care about deps in lisp/term/ | 415 | ;; This would ignore load problems with files in |
| 411 | ((locate-library (concat term-file-prefix load))) | 416 | ;; lisp/term/ |
| 417 | ;; ((locate-library (concat term-file-prefix load))) | ||
| 412 | (t | 418 | (t |
| 413 | ;; (condition-case nil (load load) (error nil)) | 419 | ;; (condition-case nil (load load) (error nil)) |
| 414 | (condition-case alpha | 420 | (condition-case alpha |