diff options
| author | Sean Whitton | 2025-07-21 09:26:59 +0100 |
|---|---|---|
| committer | Sean Whitton | 2025-07-21 09:26:59 +0100 |
| commit | 90fc061fd2d2ca95c91c4db74c6f58ec95f9620b (patch) | |
| tree | 36bf1716fd392d3681109ac291c3b5eb5e5a77a3 | |
| parent | 59575c32aa1e0d28c1c7113f1ce73cb64cec8e92 (diff) | |
| download | emacs-90fc061fd2d2ca95c91c4db74c6f58ec95f9620b.tar.gz emacs-90fc061fd2d2ca95c91c4db74c6f58ec95f9620b.zip | |
* 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 44af30b2eb0..4605e04da0a 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" | 1832 | "--exit-code" "--textconv" |
| 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 |