Variable: cycle-spacing--context

cycle-spacing--context is a variable defined in simple.el.gz.

Value

nil

Documentation

Stored context used in consecutive calls to cycle-spacing command.

The value is a property list with the following elements:
- :orig-pos The original position of point when starting the
                 sequence.
- :whitespace-string All whitespace characters around point
                       including newlines.
- :n The prefix arg given to the initial invocation
                  which is reused for all actions in this cycle.
- :last-action The last action performed in the cycle.

Source Code

;; Defined in /usr/src/emacs/lisp/simple.el.gz
(defvar cycle-spacing--context nil
  "Stored context used in consecutive calls to `cycle-spacing' command.
The value is a property list with the following elements:
- `:orig-pos'    The original position of point when starting the
                 sequence.
- `:whitespace-string' All whitespace characters around point
                       including newlines.
- `:n'            The prefix arg given to the initial invocation
                  which is reused for all actions in this cycle.
- `:last-action'  The last action performed in the cycle.")