Function: magit-log-header-line-sentence

magit-log-header-line-sentence is a byte-compiled function defined in magit-log.el.

Signature

(magit-log-header-line-sentence REVS ARGS FILES)

Documentation

Return string containing all arguments.

Source Code

;; Defined in ~/.emacs.d/elpa/magit-20260411.1452/magit-log.el
(defun magit-log-header-line-sentence (revs args files)
  "Return string containing all arguments."
  (concat "Commits in "
          (string-join revs " ")
          (and (member "--reverse" args)
               " in reverse")
          (and files (concat " touching "
                             (string-join files " ")))
          (seq-some (##and (string-prefix-p "-L" %)
                           (concat " " %))
                    args)))