Function: mairix-widget-add

mairix-widget-add is a byte-compiled function defined in mairix.el.gz.

Signature

(mairix-widget-add NAME &rest ARGS)

Documentation

Add a widget NAME with optional ARGS.

Source Code

;; Defined in /usr/src/emacs/lisp/net/mairix.el.gz
(defun mairix-widget-add (name &rest args)
  "Add a widget NAME with optional ARGS."
  (push
   (list name
	 (apply #'widget-create args))
   mairix-widgets))