Don't use color escape sequences in vc-git-expanded-log-entry
* lisp/vc/vc-git.el (vc-git-expanded-log-entry): Use '--no-color' flag in git invocation. (Bug#51262) Copyright-paperwork-exempt: yes
This commit is contained in:
parent
d7f595cc89
commit
5c1a575ef4
1 changed files with 1 additions and 1 deletions
|
@ -1323,7 +1323,7 @@ or BRANCH^ (where \"^\" can be repeated)."
|
|||
|
||||
(defun vc-git-expanded-log-entry (revision)
|
||||
(with-temp-buffer
|
||||
(apply #'vc-git-command t nil nil (list "log" revision "-1" "--"))
|
||||
(apply #'vc-git-command t nil nil (list "log" revision "-1" "--no-color" "--"))
|
||||
(goto-char (point-min))
|
||||
(unless (eobp)
|
||||
;; Indent the expanded log entry.
|
||||
|
|
Loading…
Add table
Reference in a new issue