Function: magit-blame-chunk
magit-blame-chunk is a byte-compiled function defined in
magit-blame.el.
Signature
(magit-blame-chunk &rest SLOTS)
Documentation
Create a new object of class type magit-blame-chunk(var)/magit-blame-chunk(fun).
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)))