Function: widget-documentation-string-action

widget-documentation-string-action is a byte-compiled function defined in wid-edit.el.gz.

Signature

(widget-documentation-string-action WIDGET &rest IGNORE)

Source Code

;; Defined in /usr/src/emacs/lisp/wid-edit.el.gz
(defun widget-documentation-string-action (widget &rest _ignore)
  ;; Toggle documentation.
  (let ((parent (widget-get widget :parent)))
    (widget-put parent :documentation-shown
		(not (widget-get parent :documentation-shown))))
  ;; Redraw.
  (widget-value-set widget (widget-value widget)))