Function: man-follow

man-follow is an autoloaded, interactive and byte-compiled function defined in man.el.gz.

Signature

(man-follow MAN-ARGS)

Documentation

Get a Un*x manual page of the item under point and put it in a buffer.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/man.el.gz
;;;###autoload
(defun man-follow (man-args)
  "Get a Un*x manual page of the item under point and put it in a buffer."
  (interactive (list (Man-default-man-entry)) man-common)
  (if (or (not man-args)
	  (string= man-args ""))
      (error "No item under point")
    (man man-args)))