aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonas Bernoulli <jonas@bernoul.li>2025-03-31 11:34:57 +0200
committerJonas Bernoulli <jonas@bernoul.li>2025-03-31 11:34:57 +0200
commit69cd033e825bca10285fb12f6a19f8d558666071 (patch)
treee79bb046cb62085d4d22ed44da8a5cc3f33475d8
parentce9f1a5427c735bcfba144ef3bacd9aad2d72bce (diff)
magit-git-debug: Rename value all to include-success
"All" is misleading as this does not include each and every git invocation. There are low-level functions which by pass even this most extreme setting.
-rw-r--r--lisp/magit-git.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/magit-git.el b/lisp/magit-git.el
index e6f57d8..865ddb1 100644
--- a/lisp/magit-git.el
+++ b/lisp/magit-git.el
@@ -467,7 +467,7 @@ insert the run command and stderr into the process buffer."
(setq log (make-temp-file "magit-stderr"))
(delete-file log)
(setq exit (magit-process-git (list t log) args))
- (when (or (> exit 0) (eq magit-git-debug 'all))
+ (when (or (> exit 0) (eq magit-git-debug 'include-success))
(when (file-exists-p log)
(with-temp-buffer
(insert-file-contents log)