Function: strokes-do-complex-stroke
strokes-do-complex-stroke is an autoloaded, interactive and
byte-compiled function defined in strokes.el.gz.
Signature
(strokes-do-complex-stroke EVENT)
Documentation
Read a complex 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-complex-stroke (event)
"Read a complex 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-complex-stroke nil event)))