Variable: custom-magic-alist
custom-magic-alist is a variable defined in cus-edit.el.gz.
Value
((nil "#" underline "UNINITIALIZED, you should not see this.")
(unknown "?" italic "UNKNOWN, you should not see this.")
(hidden "-" default
"HIDDEN, invoke \"Show\" in the previous line to show."
"group now hidden, invoke \"Show\", above, to show contents.")
(invalid "x" custom-invalid
"INVALID, the displayed value cannot be set.")
(modified "*" custom-modified
"EDITED, shown value does not take effect until you set or save it."
"something in this group has been edited but not set.")
(set "+" custom-set "SET for current session only."
"something in this group has been set but not saved.")
(changed ":" custom-changed "CHANGED outside Customize."
"something in this group has been changed outside customize.")
(saved "!" custom-saved "SAVED and set."
"something in this group has been set and saved.")
(themed "o" custom-themed "THEMED."
"visible group members are set by enabled themes.")
(rogue "@" custom-rogue
"NO CUSTOMIZATION DATA; not intended to be customized."
"something in this group is not prepared for customization.")
(standard " " nil "STANDARD."
"visible group members are all at standard values."))
Documentation
Alist of customize option states.
Each entry is of the form (STATE MAGIC FACE ITEM-DESC [ GROUP-DESC ]), where
STATE is one of the following symbols:
nil
For internal use, should never occur.
unknown
For internal use, should never occur.
hidden
This item is not being displayed.
invalid
This item is modified, but has an invalid form.
modified
This item is modified, and has a valid form.
set
This item has been set but not saved.
changed
The current value of this item has been changed outside Customize.
saved
This item is marked for saving.
rogue
This item has no customization information.
themed
This item was set by an enabled Custom theme.
standard
This item is unchanged from the standard setting.
MAGIC is a string used to present that state.
FACE is a face used to present the state.
ITEM-DESC is a string describing the state for options.
GROUP-DESC is a string describing the state for groups. If this is left out, ITEM-DESC will be used.
The string %c in either description will be replaced with the
category of the item. These are group, option, and face.
The list should be sorted most significant first.
Source Code
;; Defined in /usr/src/emacs/lisp/cus-edit.el.gz
(defconst custom-magic-alist
'((nil "#" underline "\
UNINITIALIZED, you should not see this.")
(unknown "?" italic "\
UNKNOWN, you should not see this.")
(hidden "-" default "\
HIDDEN, invoke \"Show\" in the previous line to show." "\
group now hidden, invoke \"Show\", above, to show contents.")
(invalid "x" custom-invalid "\
INVALID, the displayed value cannot be set.")
(modified "*" custom-modified "\
EDITED, shown value does not take effect until you set or save it." "\
something in this group has been edited but not set.")
(set "+" custom-set "\
SET for current session only." "\
something in this group has been set but not saved.")
(changed ":" custom-changed "\
CHANGED outside Customize." "\
something in this group has been changed outside customize.")
(saved "!" custom-saved "\
SAVED and set." "\
something in this group has been set and saved.")
(themed "o" custom-themed "\
THEMED." "\
visible group members are set by enabled themes.")
(rogue "@" custom-rogue "\
NO CUSTOMIZATION DATA; not intended to be customized." "\
something in this group is not prepared for customization.")
(standard " " nil "\
STANDARD." "\
visible group members are all at standard values."))
"Alist of customize option states.
Each entry is of the form (STATE MAGIC FACE ITEM-DESC [ GROUP-DESC ]), where
STATE is one of the following symbols:
nil
For internal use, should never occur.
`unknown'
For internal use, should never occur.
`hidden'
This item is not being displayed.
`invalid'
This item is modified, but has an invalid form.
`modified'
This item is modified, and has a valid form.
`set'
This item has been set but not saved.
`changed'
The current value of this item has been changed outside Customize.
`saved'
This item is marked for saving.
`rogue'
This item has no customization information.
`themed'
This item was set by an enabled Custom theme.
`standard'
This item is unchanged from the standard setting.
MAGIC is a string used to present that state.
FACE is a face used to present the state.
ITEM-DESC is a string describing the state for options.
GROUP-DESC is a string describing the state for groups. If this is
left out, ITEM-DESC will be used.
The string %c in either description will be replaced with the
category of the item. These are `group', `option', and `face'.
The list should be sorted most significant first.")