Variable: gnus-button-man-handler

gnus-button-man-handler is a customizable variable defined in gnus-art.el.gz.

Value

manual-entry

Documentation

Function to use for displaying man pages.

The function must take at least one argument with a string naming the man page.

This variable was added, or its default value changed, in Emacs 22.1.

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-art.el.gz
(defcustom gnus-button-man-handler 'manual-entry
  "Function to use for displaying man pages.
The function must take at least one argument with a string naming the
man page."
  :version "22.1"
  :type '(choice (function-item :tag "Man" manual-entry)
		 (function-item :tag "Woman" woman)
		 (function :tag "Other"))
  :group 'gnus-article-buttons)