Function: gnus-button-handle-custom
gnus-button-handle-custom is a byte-compiled function defined in
gnus-art.el.gz.
Signature
(gnus-button-handle-custom FUN ARG)
Documentation
Call function FUN on argument ARG.
Both FUN and ARG are supposed to be strings. ARG will be passed as a symbol to FUN.
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-art.el.gz
(defun gnus-button-handle-custom (fun arg)
"Call function FUN on argument ARG.
Both FUN and ARG are supposed to be strings. ARG will be passed
as a symbol to FUN."
(funcall (intern fun)
(if (string-match "^customize-apropos" fun)
arg
(intern arg))))