Function: gnus-create-info-command

gnus-create-info-command is a byte-compiled function defined in gnus-util.el.gz.

Signature

(gnus-create-info-command NODE)

Documentation

Create a command that will go to info NODE.

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-util.el.gz
(defun gnus-create-info-command (node)
  "Create a command that will go to info NODE."
  (lambda ()
    (:documentation (format "Enter the info system at node %s." node))
    (interactive)
    (info node)
    (setq gnus-info-buffer (current-buffer))
    (gnus-configure-windows 'info)))