]> code.delx.au - gnu-emacs/blobdiff - lisp/cus-start.el
Move face setup to faces.el.
[gnu-emacs] / lisp / cus-start.el
index 4de32c953e7766f2d8319dd30ba12e2567a7bbf3..ac339793029beba80f10223a040c8657b8d28613 100644 (file)
       ;; 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.