diff options
| -rw-r--r-- | lisp/cus-start.el | 19 |
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 @@ | |||
| 213 | ;; Set the type. | 213 | ;; Set the type. |
| 214 | (put symbol 'custom-type type)))) | 214 | (put symbol 'custom-type type)))) |
| 215 | 215 | ||
| 216 | ;; Add support for build in faces. | ||
| 217 | (let ((all '((bold "Use bold font.") | ||
| 218 | (bold-italic "Use bold italic font.") | ||
| 219 | (italic "Use italic font.") | ||
| 220 | (underline "Underline text.") | ||
| 221 | (default "Used for text not covered by other faces.") | ||
| 222 | (highlight "Highlight text in some way.") | ||
| 223 | (modeline "Used for displaying the modeline.") | ||
| 224 | (region "Used for displaying the region.") | ||
| 225 | (secondary-selection | ||
| 226 | "Used for displaying the secondary selection."))) | ||
| 227 | entry symbol doc) | ||
| 228 | (while all | ||
| 229 | (setq entry (car all) | ||
| 230 | all (cdr all) | ||
| 231 | symbol (nth 0 entry) | ||
| 232 | doc (nth 1 entry)) | ||
| 233 | (put symbol 'face-documentation doc))) | ||
| 234 | |||
| 235 | ;;; cus-start.el ends here. | 216 | ;;; cus-start.el ends here. |