Function: magit-diff-highlight-hunk-region-using-face
magit-diff-highlight-hunk-region-using-face is a byte-compiled
function defined in magit-diff.el.
Signature
(magit-diff-highlight-hunk-region-using-face SECTION)
Documentation
Highlight the hunk-internal region by making it bold.
Or rather highlight using the face magit-diff-hunk-region, though
changing only the :weight and/or :slant is recommended for that
face.
Source Code
;; Defined in ~/.emacs.d/elpa/magit-20260411.1452/magit-diff.el
(defun magit-diff-highlight-hunk-region-using-face (_section)
"Highlight the hunk-internal region by making it bold.
Or rather highlight using the face `magit-diff-hunk-region', though
changing only the `:weight' and/or `:slant' is recommended for that
face."
(magit-diff--make-hunk-overlay (magit-diff-hunk-region-beginning)
(1+ (magit-diff-hunk-region-end))
'font-lock-face 'magit-diff-hunk-region))