Variable: edebug-save-displayed-buffer-points
edebug-save-displayed-buffer-points is a customizable variable defined
in edebug.el.gz.
Value
nil
Documentation
If non-nil, save and restore point in all displayed buffers.
Saving and restoring point in other buffers is necessary if you are debugging code that changes the point of a buffer that is displayed in a non-selected window. If Edebug or the user then selects the window, the buffer's point will be changed to the window's point.
Saving and restoring point in all buffers is expensive, since it requires selecting each window twice, so enable this only if you need it.
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/edebug.el.gz
(defcustom edebug-save-displayed-buffer-points nil
"If non-nil, save and restore point in all displayed buffers.
Saving and restoring point in other buffers is necessary if you are
debugging code that changes the point of a buffer that is displayed
in a non-selected window. If Edebug or the user then selects the
window, the buffer's point will be changed to the window's point.
Saving and restoring point in all buffers is expensive, since it
requires selecting each window twice, so enable this only if you
need it."
:type 'boolean)