Function: strokes-toggle-strokes-buffer

strokes-toggle-strokes-buffer is an interactive and byte-compiled function defined in strokes.el.gz.

Signature

(strokes-toggle-strokes-buffer &optional ARG)

Documentation

Toggle the use of the strokes buffer.

In other words, toggle the variable strokes-use-strokes-buffer. With ARG, use strokes buffer if and only if ARG is positive or true. Returns value of strokes-use-strokes-buffer.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/strokes.el.gz
(defun strokes-toggle-strokes-buffer (&optional arg)
  "Toggle the use of the strokes buffer.
In other words, toggle the variable `strokes-use-strokes-buffer'.
With ARG, use strokes buffer if and only if ARG is positive or true.
Returns value of `strokes-use-strokes-buffer'."
  (interactive "P")
  (setq strokes-use-strokes-buffer
	(if arg (> (prefix-numeric-value arg) 0)
	  (not strokes-use-strokes-buffer))))