summaryrefslogtreecommitdiff
path: root/lisp/cus-start.el
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1997-05-25 21:55:52 +0000
committerRichard M. Stallman <rms@gnu.org>1997-05-25 21:55:52 +0000
commit5e4447f1e4e96efdf44d7d78b932bfe467ccc1e4 (patch)
treeffea5bb9a646c573c472b6df9cd929b061548ad3 /lisp/cus-start.el
parent55893d25c012ec0ee3d0a953775b4653401c80a8 (diff)
downloademacs-5e4447f1e4e96efdf44d7d78b932bfe467ccc1e4.tar.gz
Move face setup to faces.el.
Diffstat (limited to 'lisp/cus-start.el')
-rw-r--r--lisp/cus-start.el19
1 files changed, 0 insertions, 19 deletions
diff --git a/lisp/cus-start.el b/lisp/cus-start.el
index 4de32c953e7..ac339793029 100644
--- a/lisp/cus-start.el
+++ b/lisp/cus-start.el
@@ -213,23 +213,4 @@
;; Set the type.
(put symbol 'custom-type type))))
-;; Add support for build in faces.
-(let ((all '((bold "Use bold font.")
- (bold-italic "Use bold italic font.")
- (italic "Use italic font.")
- (underline "Underline text.")
- (default "Used for text not covered by other faces.")
- (highlight "Highlight text in some way.")
- (modeline "Used for displaying the modeline.")
- (region "Used for displaying the region.")
- (secondary-selection
- "Used for displaying the secondary selection.")))
- entry symbol doc)
- (while all
- (setq entry (car all)
- all (cdr all)
- symbol (nth 0 entry)
- doc (nth 1 entry))
- (put symbol 'face-documentation doc)))
-
;;; cus-start.el ends here.