Function: strokes-do-stroke
strokes-do-stroke is an autoloaded, interactive and byte-compiled
function defined in strokes.el.gz.
Signature
(strokes-do-stroke EVENT)
Documentation
Read a simple stroke from the user and then execute its command.
This must be bound to a mouse event.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/strokes.el.gz
;;;###autoload
(defun strokes-do-stroke (event)
"Read a simple stroke from the user and then execute its command.
This must be bound to a mouse event."
(interactive "e")
(or strokes-mode (strokes-mode t))
(strokes-execute-stroke (strokes-read-stroke nil event)))