Function: custom-describe-theme

custom-describe-theme is an interactive and byte-compiled function defined in cus-theme.el.gz.

Signature

(custom-describe-theme)

Documentation

Describe the Custom theme on the current line.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/cus-theme.el.gz
(defun custom-describe-theme ()
  "Describe the Custom theme on the current line."
  (interactive)
  (let ((widget (widget-at (line-beginning-position))))
    (and widget
	 (describe-theme (widget-get widget :theme-name)))))