Function: ediff-unmark-all-for-operation

ediff-unmark-all-for-operation is an interactive and byte-compiled function defined in ediff-mult.el.gz.

Signature

(ediff-unmark-all-for-operation)

Documentation

Unmark all sessions marked for operation.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/vc/ediff-mult.el.gz
(defun ediff-unmark-all-for-operation ()
  "Unmark all sessions marked for operation."
  (interactive)
  (let ((list (cdr ediff-meta-list))
	elt)
    (while (setq elt (car list))
      (ediff-mark-session-for-operation elt 'unmark)
      (setq list (cdr list))))
  (ediff-update-meta-buffer (current-buffer) 'must-redraw))