diff options
author | Glenn Morris <rgm@gnu.org> | 2010-10-31 15:47:12 -0700 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2010-10-31 15:47:12 -0700 |
commit | 0356de228e34df4e0e598c706fd632b4ac932e8c (patch) | |
tree | e0da926ba900b3cd3159f5491a68c3385bd9d66a /lisp | |
parent | fd8d481ee5c5abefba7c2b068c066d5de26475a6 (diff) | |
download | emacs-0356de228e34df4e0e598c706fd632b4ac932e8c.tar.gz emacs-0356de228e34df4e0e598c706fd632b4ac932e8c.tar.bz2 emacs-0356de228e34df4e0e598c706fd632b4ac932e8c.zip |
* lisp/cus-start.el: Explanatory comment.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/cus-start.el | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/lisp/cus-start.el b/lisp/cus-start.el index 388a314c5c5..750b6570158 100644 --- a/lisp/cus-start.el +++ b/lisp/cus-start.el @@ -34,6 +34,19 @@ ;;; Code: +;; Elements of this list have the form: +;; SYMBOL GROUP TYPE VERSION REST... +;; SYMBOL is the name of the variable. +;; GROUP is the custom group to which it belongs (may also be a list +;; of groups) +;; TYPE is the defcustom :type. +;; VERSION is the defcustom :version (or nil). +;; REST is a set of :KEYWORD VALUE pairs. Accepted :KEYWORDs are: +;; :standard - standard value for SYMBOL (else use current value) +;; :set - custom-set property +;; :risky - risky-local-variable property +;; :safe - safe-local-variable property +;; :tag - custom-tag property (let ((all '(;; alloc.c (gc-cons-threshold alloc integer) (garbage-collection-messages alloc boolean) |