Variable: strokes-no-match-function

strokes-no-match-function is a variable defined in strokes.el.gz.

Value

strokes-no-match-default

Documentation

Function run by strokes-execute-stroke when no stroke matches.

The function is called with two arguments, the stroke and the closest match returned by strokes-match-stroke. It can be used to show detailed information about the unmatched stroke or perform some fallback action. The default function strokes-no-match-default simply signals an error.

Source Code

;; Defined in /usr/src/emacs/lisp/strokes.el.gz
(defvar strokes-no-match-function 'strokes-no-match-default
  "Function run by `strokes-execute-stroke' when no stroke matches.
The function is called with two arguments, the stroke and the
closest match returned by `strokes-match-stroke'.  It can be used
to show detailed information about the unmatched stroke or
perform some fallback action.  The default function
`strokes-no-match-default' simply signals an error.")