Function: woman-follow

woman-follow is an interactive and byte-compiled function defined in woman.el.gz.

Signature

(woman-follow TOPIC)

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/woman.el.gz
(defun woman-follow (topic)
  "Get a Un*x manual page of the item under point and put it in a buffer."
  (interactive (list (Man-default-man-entry)))
  (if (or (not topic)
	  (string= topic ""))
      (error "No item under point")
    (woman (if (string-match Man-reference-regexp topic)
	       (substring topic 0 (match-end 1))
	     topic))))