Function: custom-show

custom-show is a byte-compiled function defined in cus-edit.el.gz.

This function is obsolete since 24.1; this widget type is no longer supported.

Signature

(custom-show WIDGET VALUE)

Documentation

Non-nil if WIDGET should be shown with VALUE by default.

Source Code

;; Defined in /usr/src/emacs/lisp/cus-edit.el.gz
(defun custom-show (widget value)
  "Non-nil if WIDGET should be shown with VALUE by default."
  (declare (obsolete "this widget type is no longer supported." "24.1"))
  (let ((show (widget-get widget :custom-show)))
    (if (functionp show)
	(funcall show widget value)
      show)))