diff options
| author | Sean Whitton | 2025-07-22 11:34:44 +0100 |
|---|---|---|
| committer | Sean Whitton | 2025-07-22 11:34:44 +0100 |
| commit | d381a7e79932f83aafb4de0340037f393ed031b5 (patch) | |
| tree | 1235323465ec5198a9fff5d80068f26532095ab2 | |
| parent | eb488e1bba091e745a951ef45069d01e2c49731f (diff) | |
| download | emacs-d381a7e79932f83aafb4de0340037f393ed031b5.tar.gz emacs-d381a7e79932f83aafb4de0340037f393ed031b5.zip | |
* lisp/vc/vc-git.el (vc-git-diff): Don't pass --textconv.
This reverts this change:
Author: Sean Whitton <spwhitton@spwhitton.name>
AuthorDate: Mon Jul 21 09:26:59 2025 +0100
* lisp/vc/vc-git.el (vc-git-diff): Pass --textconv (bug#79050).
| -rw-r--r-- | lisp/vc/vc-git.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/vc/vc-git.el b/lisp/vc/vc-git.el index 4605e04da0a..44af30b2eb0 100644 --- a/lisp/vc/vc-git.el +++ b/lisp/vc/vc-git.el | |||
| @@ -1829,7 +1829,7 @@ This requires git 1.8.4 or later, for the \"-L\" option of \"git log\"." | |||
| 1829 | (if async 'async 1) | 1829 | (if async 'async 1) |
| 1830 | files | 1830 | files |
| 1831 | command | 1831 | command |
| 1832 | "--exit-code" "--textconv" | 1832 | "--exit-code" |
| 1833 | (append (vc-switches 'git 'diff) | 1833 | (append (vc-switches 'git 'diff) |
| 1834 | (list "-p" (or rev1 "HEAD") rev2 "--"))) | 1834 | (list "-p" (or rev1 "HEAD") rev2 "--"))) |
| 1835 | (vc-git-command (or buffer "*vc-diff*") 1 files | 1835 | (vc-git-command (or buffer "*vc-diff*") 1 files |