*** empty log message ***
[gnus] / lisp / gnus-cus.el
1 ;;; gnus-cus.el --- User friendly customization of GNUS.
2 ;; Copyright (C) 1995 Free Software Foundation, Inc.
3 ;;
4 ;; Author: Per Abrahamsen <abraham@iesd.auc.dk>
5 ;; Keywords: help, news
6 ;; Version: 0.0
7
8 ;;; Code:
9
10 (require 'custom)
11
12 (custom-declare '()
13   '((tag . "GNUS")
14     (doc . "\
15 The coffe-brewing, all singing, all dancing, kitchen sink newsreader.")
16     (type . group)
17     (data ((tag . "Visual")
18            (doc . "\
19 GNUS can be made colorful and fun or grey and dull as you wish.")
20            (type . group)
21            (data ((tag . "Visual")
22                   (doc . "Enable visual features.
23 If `visual' is disabled, there will be no menus and no faces.  All
24 the visual customization options below will be ignored.  GNUS will use
25 less space and be faster as a result.")
26                   (default . t)
27                   (name . gnus-visual)
28                   (type . toggle))
29                  ((tag . "Summary Selected Face")
30                   (doc . "\
31 Face used for highlighting the current article in the summary buffer.")
32                   (name . gnus-summary-selected-face)
33                   (default . underline)
34                   (type . face))
35 ;;; gnus-summary-highlight
36 ;;;   need cons and sexp
37                  )))))
38
39 (provide 'gnus-cus)
40
41 ;;; gnus-cus.el ends here