Function: Custom-goto-parent
Custom-goto-parent is an interactive and byte-compiled function
defined in cus-edit.el.gz.
Signature
(Custom-goto-parent)
Documentation
Go to the parent group listed at the top of this buffer.
If several parents are listed, go to the first of them.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/cus-edit.el.gz
(defun Custom-goto-parent ()
"Go to the parent group listed at the top of this buffer.
If several parents are listed, go to the first of them."
(interactive)
(save-excursion
(goto-char (point-min))
(if (search-forward "\nParent groups: " nil t)
(let* ((button (get-char-property (point) 'button))
(parent (downcase (widget-get button :tag))))
(customize-group parent)))))