Function: gnus-widget-reversible-to-internal
gnus-widget-reversible-to-internal is a byte-compiled function defined
in gnus-sum.el.gz.
Signature
(gnus-widget-reversible-to-internal WIDGET VALUE)
Documentation
Ignoring WIDGET, convert VALUE to internal form.
VALUE should have the form FOO or (not FOO), where FOO is an atom.
FOO is converted to (FOO nil) and (not FOO) is converted to (FOO t).
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-sum.el.gz
(defun gnus-widget-reversible-to-internal (_widget value)
"Ignoring WIDGET, convert VALUE to internal form.
VALUE should have the form `FOO' or `(not FOO)', where FOO is an atom.
FOO is converted to (FOO nil) and (not FOO) is converted to (FOO t)."
;; (debug value)
(if (atom value)
(list value nil)
(list (nth 1 value) t)))