branch: elpa/magit
commit 69cd033e825bca10285fb12f6a19f8d558666071
Author: Jonas Bernoulli <jo...@bernoul.li>
Commit: Jonas Bernoulli <jo...@bernoul.li>

    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.
---
 lisp/magit-git.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lisp/magit-git.el b/lisp/magit-git.el
index e6f57d83e7..865ddb1aff 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)

Reply via email to