Variable: shell-command-saved-pos

shell-command-saved-pos is a variable defined in simple.el.gz.

Value

nil

Documentation

Record of point positions in output buffers after command completion.

The value is an alist whose elements are of the form (BUFFER . POS), where BUFFER is the output buffer, and POS is the point position in BUFFER once the command finishes. This variable is used when shell-command-dont-erase-buffer is non-nil.

Source Code

;; Defined in /usr/src/emacs/lisp/simple.el.gz
(defvar shell-command-saved-pos nil
  "Record of point positions in output buffers after command completion.
The value is an alist whose elements are of the form (BUFFER . POS),
where BUFFER is the output buffer, and POS is the point position
in BUFFER once the command finishes.
This variable is used when `shell-command-dont-erase-buffer' is non-nil.")