Function: ediff-make-new-meta-list-element
ediff-make-new-meta-list-element is a byte-compiled function defined
in ediff-mult.el.gz.
Signature
(ediff-make-new-meta-list-element OBJ1 OBJ2 OBJ3)
Source Code
;; Defined in /usr/src/emacs/lisp/vc/ediff-mult.el.gz
;; Create a new element for the meta list out of obj1/2/3, which usually are
;; files
;;
;; The first nil in such an element is later replaced with the session buffer.
;; The second nil is reserved for session status.
;;
;; Also, session objects A/B/C are turned into lists of the form (obj nil).
;; This nil is a placeholder for eq-indicator. It is either nil or =.
;; If it is discovered that this file is = to some other
;; file in the same session, eq-indicator is changed to `='.
;; Currently, the eq-indicator is used only for 2 and 3-file jobs.
(defun ediff-make-new-meta-list-element (obj1 obj2 obj3)
(list nil nil (list obj1 nil) (list obj2 nil) (list obj3 nil)))