diff options
| author | Eli Zaretskii | 2023-12-16 11:04:24 +0200 |
|---|---|---|
| committer | Eli Zaretskii | 2023-12-16 11:04:24 +0200 |
| commit | 100a2ab24605b973172b39d0b21adcdcd9907ba9 (patch) | |
| tree | 0071bd32854e54f761344cde7009b64665e0a5ea | |
| parent | 746507dc3b9f555ff6e8e6282ff03ac211752325 (diff) | |
| download | emacs-100a2ab24605b973172b39d0b21adcdcd9907ba9.tar.gz emacs-100a2ab24605b973172b39d0b21adcdcd9907ba9.zip | |
; * lisp/vc/vc-git.el (vc-git-print-log-follow): Doc fix.
| -rw-r--r-- | lisp/vc/vc-git.el | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/lisp/vc/vc-git.el b/lisp/vc/vc-git.el index f6e8e1b7042..24469f04f7c 100644 --- a/lisp/vc/vc-git.el +++ b/lisp/vc/vc-git.el | |||
| @@ -1429,15 +1429,16 @@ This prompts for a branch to merge from." | |||
| 1429 | ;; Long explanation here: | 1429 | ;; Long explanation here: |
| 1430 | ;; https://stackoverflow.com/questions/46487476/git-log-follow-graph-skips-commits | 1430 | ;; https://stackoverflow.com/questions/46487476/git-log-follow-graph-skips-commits |
| 1431 | (defcustom vc-git-print-log-follow nil | 1431 | (defcustom vc-git-print-log-follow nil |
| 1432 | "If true, use the flag `--follow' when producing single file logs. | 1432 | "If non-nil, use the flag `--follow' when producing single file logs. |
| 1433 | 1433 | ||
| 1434 | It will make the printed log automatically follow the renames. | 1434 | A non-nil value will make the printed log automatically follow |
| 1435 | The downsides is that the log produced this way may omit | 1435 | the file renames. The downsides is that the log produced this |
| 1436 | certain (merge) commits, and that `log-view-diff' fails on | 1436 | way may omit certain (merge) commits, and that `log-view-diff' |
| 1437 | commits that used the previous name, in that log buffer. | 1437 | fails on commits that used the previous name, in that log buffer. |
| 1438 | 1438 | ||
| 1439 | When this variable is nil, and the log ends with a rename, we | 1439 | When this variable is nil, and the log ends with a rename, we |
| 1440 | print a button below that shows the log for the previous name." | 1440 | show a button below that which allows to show the log for the |
| 1441 | file name before the rename." | ||
| 1441 | :type 'boolean | 1442 | :type 'boolean |
| 1442 | :version "26.1") | 1443 | :version "26.1") |
| 1443 | 1444 | ||