bug-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#51262: [PATCH] Don't use color escape sequences in `vc-git-expanded-


From: Stefan Kangas
Subject: bug#51262: [PATCH] Don't use color escape sequences in `vc-git-expanded-log-entry'
Date: Mon, 18 Oct 2021 22:16:11 -0700
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/29.0.50 (gnu/linux)

Jan Synáček <jan.synacek@gmail.com> writes:

> From acbfec361709c5eebafb9a957e76f70500083cf0 Mon Sep 17 00:00:00 2001
> From: Jan Synacek <jan.synacek@gmail.com>
> Date: Mon, 18 Oct 2021 12:34:38 +0200
> Subject: [PATCH] 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 in git
> invocation.
>
> Copyright-paperwork-exempt: yes
> ---
>  lisp/vc/vc-git.el | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/lisp/vc/vc-git.el b/lisp/vc/vc-git.el
> index 35c0838dd6..3f89fad235 100644
> --- a/lisp/vc/vc-git.el
> +++ b/lisp/vc/vc-git.el
> @@ -1323,7 +1323,7 @@ vc-git-show-log-entry
>
>  (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.

Thanks for the patch.

Could you add some details here, such as what problem it is supposed to
fix?  How can I reproduce the issue here, starting from emacs -Q?





reply via email to

[Prev in Thread] Current Thread [Next in Thread]