Function: magit-blame-chunk--eieio-childp
magit-blame-chunk--eieio-childp is a byte-compiled function defined in
magit-blame.el.
Signature
(magit-blame-chunk--eieio-childp OBJ)
Documentation
Return non-nil if OBJ is an object of type magit-blame-chunk(var)/magit-blame-chunk(fun) or a subclass.
Aliases
magit-blame-chunk-child-p (obsolete since 25.1)
Source Code
;; Defined in ~/.emacs.d/elpa/magit-20260411.1452/magit-blame.el
;;; Chunks
(defclass magit-blame-chunk ()
(;; <orig-rev> <orig-line> <final-line> <num-lines>
(orig-rev :initarg :orig-rev)
(orig-line :initarg :orig-line)
(final-line :initarg :final-line)
(num-lines :initarg :num-lines)
;; previous <prev-rev> <prev-file>
(prev-rev :initform nil)
(prev-file :initform nil)
;; filename <orig-file>
(orig-file)))