comparison lisp/custom.el @ 771:943eaba38521

[xemacs-hg @ 2002-03-13 08:51:24 by ben] The big ben-mule-21-5 check-in! Various files were added and deleted. See CHANGES-ben-mule. There are still some test suite failures. No crashes, though. Many of the failures have to do with problems in the test suite itself rather than in the actual code. I'll be addressing these in the next day or so -- none of the test suite failures are at all critical. Meanwhile I'll be trying to address the biggest issues -- i.e. build or run failures, which will almost certainly happen on various platforms. All comments should be sent to ben@xemacs.org -- use a Cc: if necessary when sending to mailing lists. There will be pre- and post- tags, something like pre-ben-mule-21-5-merge-in, and post-ben-mule-21-5-merge-in.
author ben
date Wed, 13 Mar 2002 08:54:06 +0000
parents 576fb035e263
children 4a27df428c73
comparison
equal deleted inserted replaced
770:336a418893b5 771:943eaba38521
35 ;; 35 ;;
36 ;; The code implementing face declarations is in `cus-face.el' 36 ;; The code implementing face declarations is in `cus-face.el'
37 37
38 ;;; Code: 38 ;;; Code:
39 39
40 ;; it is now safe to put the `provide' anywhere. if an error occurs while
41 ;; loading, all provides (and fsets) will be undone. put it first to
42 ;; prevent require/provide loop with custom and cus-face.
43 (provide 'custom)
44
40 (eval-when-compile 45 (eval-when-compile
41 (load "cl-macs" nil t)) 46 (load "cl-macs" nil t)
47 ;; To elude warnings.
48 (require 'cus-face))
42 49
43 (autoload 'custom-declare-face "cus-face") 50 (autoload 'custom-declare-face "cus-face")
44 (autoload 'defun* "cl-macs") 51 (autoload 'defun* "cl-macs")
45 52
46 (require 'widget) 53 (require 'widget)
635 (apply #'custom-theme-reset-variables 'user args)) 642 (apply #'custom-theme-reset-variables 'user args))
636 643
637 644
638 ;;; The End. 645 ;;; The End.
639 646
640 (provide 'custom)
641
642 ;; custom.el ends here 647 ;; custom.el ends here