Function: woman-follow-word

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

Signature

(woman-follow-word EVENT)

Documentation

Run WoMan with word under mouse as topic.

Argument EVENT is the invoking mouse event.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/woman.el.gz
(defun woman-follow-word (event)
  "Run WoMan with word under mouse as topic.
Argument EVENT is the invoking mouse event."
  (interactive "e")			; mouse event
  (goto-char (posn-point (event-start event)))
  (woman (or (current-word t) "")))