Function: mh-customize
mh-customize is an interactive and byte-compiled function defined in
mh-e.el.gz.
Signature
(mh-customize &optional DELETE-OTHER-WINDOWS-FLAG)
Documentation
Customize MH-E variables.
If optional argument DELETE-OTHER-WINDOWS-FLAG is non-nil, other windows in the frame are removed.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/mh-e/mh-e.el.gz
;;; MH-E Customization
;; All of the defgroups, defcustoms, and deffaces in MH-E are found
;; here. This makes it possible to customize modules that aren't
;; loaded yet. It also makes it easier to organize the customization
;; groups.
;; This section contains the following sub-sections:
;; 1. MH-E Customization Groups
;; These are the customization group definitions. Every group has a
;; associated manual node. The ordering is alphabetical, except for
;; the groups mh-faces and mh-hooks which are last .
;; 2. MH-E Customization
;; These are the actual customization variables. There is a
;; sub-section for each group in the MH-E Customization Groups
;; section, in the same order, separated by page breaks. Within
;; each section, variables are sorted alphabetically.
;; 3. Hooks
;; All hooks must be placed in the mh-hook group; in addition, add
;; the group associated with the manual node in which the hook is
;; described. Since the mh-hook group appears near the end of this
;; section, the hooks will appear at the end of these other groups.
;; 4. Faces
;; All faces must be placed in the mh-faces group; in addition, add
;; the group associated with the manual node in which the face is
;; described. Since the mh-faces group appears near the end of this
;; section, the faces will appear at the end of these other groups.
(defun mh-customize (&optional delete-other-windows-flag)
"Customize MH-E variables.
If optional argument DELETE-OTHER-WINDOWS-FLAG is non-nil, other
windows in the frame are removed."
(interactive "P")
(customize-group 'mh-e)
(when delete-other-windows-flag
(delete-other-windows)))