Function: ediff-unmark-all-for-hiding
ediff-unmark-all-for-hiding is an interactive and byte-compiled
function defined in ediff-mult.el.gz.
Signature
(ediff-unmark-all-for-hiding)
Documentation
Unmark all sessions marked for hiding.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/vc/ediff-mult.el.gz
(defun ediff-unmark-all-for-hiding ()
"Unmark all sessions marked for hiding."
(interactive)
(let ((list (cdr ediff-meta-list))
elt)
(while (setq elt (car list))
(ediff-mark-session-for-hiding elt 'unmark)
(setq list (cdr list))))
(ediff-update-meta-buffer (current-buffer) 'must-redraw))