]> git.eshelyaron.com Git - emacs.git/commitdiff
; * lisp/vc/vc-git.el (vc-git-print-log-follow): Doc fix.
authorEli Zaretskii <eliz@gnu.org>
Sat, 16 Dec 2023 09:04:24 +0000 (11:04 +0200)
committerEli Zaretskii <eliz@gnu.org>
Sat, 16 Dec 2023 09:04:24 +0000 (11:04 +0200)
lisp/vc/vc-git.el

index f6e8e1b7042923c834d9c6ab8443043a03799da2..24469f04f7ca56bdb0e1f44d4caa371596f7b46c 100644 (file)
@@ -1429,15 +1429,16 @@ This prompts for a branch to merge from."
 ;; Long explanation here:
 ;; https://stackoverflow.com/questions/46487476/git-log-follow-graph-skips-commits
 (defcustom vc-git-print-log-follow nil
-  "If true, use the flag `--follow' when producing single file logs.
+  "If non-nil, use the flag `--follow' when producing single file logs.
 
-It will make the printed log automatically follow the renames.
-The downsides is that the log produced this way may omit
-certain (merge) commits, and that `log-view-diff' fails on
-commits that used the previous name, in that log buffer.
+A non-nil value will make the printed log automatically follow
+the file renames.  The downsides is that the log produced this
+way may omit certain (merge) commits, and that `log-view-diff'
+fails on commits that used the previous name, in that log buffer.
 
 When this variable is nil, and the log ends with a rename, we
-print a button below that shows the log for the previous name."
+show a button below that which allows to show the log for the
+file name before the rename."
   :type 'boolean
   :version "26.1")