Function: ediff-next-meta-item

ediff-next-meta-item is an interactive and byte-compiled function defined in ediff-mult.el.gz.

Signature

(ediff-next-meta-item COUNT)

Documentation

Move to the next item in Ediff registry or session group buffer.

Moves in circular fashion.

With numeric prefix arg COUNT, skip this many items.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/vc/ediff-mult.el.gz
(defun ediff-next-meta-item (count)
  "Move to the next item in Ediff registry or session group buffer.
Moves in circular fashion.

With numeric prefix arg COUNT, skip this many items."
  (interactive "p")
  (or count (setq count 1))
  (let (overl)
    (while (< 0 count)
      (setq count (1- count))
      (ediff-next-meta-item1)
      (setq overl (ediff-get-meta-overlay-at-pos (point)))
      ;; skip invisible ones
      (while (and overl (overlay-get overl 'invisible))
	(ediff-next-meta-item1)
	(setq overl (ediff-get-meta-overlay-at-pos (point)))))))