aboutsummaryrefslogtreecommitdiffstats
path: root/admin/cus-test.el
diff options
context:
space:
mode:
authorGlenn Morris2013-05-08 20:17:44 -0700
committerGlenn Morris2013-05-08 20:17:44 -0700
commit2dee4d5e14705773017e5dcde7f58601f7a54709 (patch)
treee98b76bcdc6dd02cc6b60b83657f0fdc82385273 /admin/cus-test.el
parent2d809ffafd3e1bde360c08f3be4b7d9a43ff5f0e (diff)
downloademacs-2dee4d5e14705773017e5dcde7f58601f7a54709.tar.gz
emacs-2dee4d5e14705773017e5dcde7f58601f7a54709.zip
* admin/cus-test.el: No need to provide bbdb, bbdb-com any more.
Remove some outdated comments.
Diffstat (limited to 'admin/cus-test.el')
-rw-r--r--admin/cus-test.el48
1 files changed, 0 insertions, 48 deletions
diff --git a/admin/cus-test.el b/admin/cus-test.el
index c93a14297f8..ec7934ebd8b 100644
--- a/admin/cus-test.el
+++ b/admin/cus-test.el
@@ -87,43 +87,6 @@
87;; The command `cus-test-noloads' returns a list of variables which 87;; The command `cus-test-noloads' returns a list of variables which
88;; are somewhere declared as custom options, but not loaded by 88;; are somewhere declared as custom options, but not loaded by
89;; `custom-load-symbol'. 89;; `custom-load-symbol'.
90;;
91;; Some results from October 2002:
92;;
93;; 4523 options tested
94;; The following variables might have problems:
95;; ps-mule-font-info-database-default
96;; grep-tree-command
97;; grep-find-command
98;;
99;; 288 features required
100;; 10 files loaded
101;; The following load problems appeared:
102;; (killing x-win (file-error Cannot open load file x-win))
103;; Symbol faces has loaddefs as custom dependency
104;; (reftex-index-support reftex-vars (void-function reftex-set-dirty))
105;; (eshell-script em-script (void-variable eshell-directory-name))
106;; (pcomplete em-cmpl (void-function eshell-under-windows-p))
107;; (eshell-ext esh-ext (void-function eshell-under-windows-p))
108;; ...
109;;
110;; 422 libraries had no load errors
111;; The following load problems appeared:
112;; (eudc-export error 255)
113;; (ada-xref error 255)
114;; (ada-stmt error 255)
115;;
116;; The following options were not loaded by custom-load-symbol:
117;; edt-bottom-scroll-margin
118;; edt-keep-current-page-delimiter
119;; edt-top-scroll-margin
120;; edt-use-EDT-control-key-bindings
121;; edt-word-entities
122;; grep-find-use-xargs
123;; master-mode-hook
124;; outline-level
125;; outline-minor-mode-hook
126;; refill-mode-hook
127 90
128 91
129;;; Code: 92;;; Code:
@@ -139,12 +102,6 @@
139(defvar cus-test-libs-noloads nil 102(defvar cus-test-libs-noloads nil
140 "List of libraries not to load by `cus-test-load-libs'.") 103 "List of libraries not to load by `cus-test-load-libs'.")
141 104
142;; The file eudc-export.el loads libraries "bbdb" and "bbdb-com" which
143;; are not part of GNU Emacs: (locate-library "bbdb") => nil
144;; We avoid the resulting errors from loading eudc-export.el:
145(provide 'bbdb)
146(provide 'bbdb-com)
147
148;; This avoids a hang of `cus-test-apropos' in 21.2. 105;; This avoids a hang of `cus-test-apropos' in 21.2.
149;; (add-to-list 'cus-test-skip-list 'sh-alias-alist) 106;; (add-to-list 'cus-test-skip-list 'sh-alias-alist)
150 107
@@ -517,11 +474,6 @@ in the Emacs source directory."
517 (cus-test-message 474 (cus-test-message
518 (sort cus-test-vars-not-cus-loaded 'string<))))) 475 (sort cus-test-vars-not-cus-loaded 'string<)))))
519 476
520;; And last but not least a quiz:
521;;
522;; Evaluation of the form (customize-option 'debug-on-error) yields a
523;; *Customize* buffer with a mismatch mess. Why?
524
525(provide 'cus-test) 477(provide 'cus-test)
526 478
527;;; cus-test.el ends here 479;;; cus-test.el ends here