Mercurial > emacs
changeset 17948:5fedfd0ef32e
Move face setup to faces.el.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sun, 25 May 1997 21:55:52 +0000 |
parents | 057ea7eaaff3 |
children | 3b0f71e1661d |
files | lisp/cus-start.el |
diffstat | 1 files changed, 0 insertions(+), 19 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/cus-start.el Sun May 25 21:52:33 1997 +0000 +++ b/lisp/cus-start.el Sun May 25 21:55:52 1997 +0000 @@ -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.