Function: ediff-suspend
ediff-suspend is an interactive and byte-compiled function defined in
ediff-util.el.gz.
Signature
(ediff-suspend)
Documentation
Suspend Ediff.
To resume, switch to the appropriate Ediff Control Panel
buffer and then type M-x ediff-recenter (ediff-recenter). Ediff will automatically set
up an appropriate window config.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/vc/ediff-util.el.gz
(defun ediff-suspend ()
"Suspend Ediff.
To resume, switch to the appropriate `Ediff Control Panel'
buffer and then type \\[ediff-recenter]. Ediff will automatically set
up an appropriate window config."
(interactive)
(ediff-barf-if-not-control-buffer)
(run-hooks 'ediff-suspend-hook)
(message (substitute-command-keys
"To resume, type \\[eregistry] and select the desired Ediff session")))