Mercurial > hg > xemacs-beta
comparison lisp/cus-face.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 | a307f9a2021d |
children | 7efd3a9bbcfb |
comparison
equal
deleted
inserted
replaced
770:336a418893b5 | 771:943eaba38521 |
---|---|
15 ;; This file should probably be dissolved, and code moved to faces.el, | 15 ;; This file should probably be dissolved, and code moved to faces.el, |
16 ;; like Stallman did. | 16 ;; like Stallman did. |
17 | 17 |
18 ;;; Code: | 18 ;;; Code: |
19 | 19 |
20 ;; it is now safe to put the `provide' anywhere. if an error occurs while | |
21 ;; loading, all provides (and fsets) will be undone. put it first to | |
22 ;; prevent require/provide loop with custom and cus-face. | |
23 (provide 'cus-face) | |
20 (require 'custom) | 24 (require 'custom) |
21 | 25 |
22 ;; To elude the warnings for font functions. | 26 ;; To elude the warnings for font functions. |
23 (eval-when-compile | 27 (eval-when-compile |
24 (require 'font)) | 28 (require 'font)) |
347 (apply #'custom-theme-reset-faces 'user args)) | 351 (apply #'custom-theme-reset-faces 'user args)) |
348 | 352 |
349 | 353 |
350 ;;; The End. | 354 ;;; The End. |
351 | 355 |
352 (provide 'cus-face) | |
353 | |
354 ;; cus-face.el ends here | 356 ;; cus-face.el ends here |