Function: ediff-get-group-buffer
ediff-get-group-buffer is a byte-compiled function defined in
ediff-mult.el.gz.
Signature
(ediff-get-group-buffer META-LIST)
Source Code
;; Defined in /usr/src/emacs/lisp/vc/ediff-mult.el.gz
;;; API for ediff-meta-list
;; A meta-list is either ediff-meta-list, which contains a header and the list
;; of ediff sessions or ediff-dir-difference-list, which is a header followed
;; by the list of differences among the directories (i.e., files that are not
;; in all directories). The header is the same in all meta lists, but the rest
;; is different.
;; Structure of the meta-list:
;; (HEADER SESSION1 SESSION2 ...)
;; HEADER: (GROUP-BUF REGEXP OBJA OBJB OBJC SAVE-DIR COMPARISON-FUNC)
;; OBJA - first directory
;; OBJB - second directory
;; OBJC - third directory
;; SESSION1/2/... are described below
;; group buffer/regexp
(defsubst ediff-get-group-buffer (meta-list)
(nth 0 (car meta-list)))