emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/git-commit 4f5e791446 1/4: magit-git-debug: Move definitio


From: ELPA Syncer
Subject: [nongnu] elpa/git-commit 4f5e791446 1/4: magit-git-debug: Move definition
Date: Mon, 2 May 2022 17:58:19 -0400 (EDT)

branch: elpa/git-commit
commit 4f5e791446b76cbfc23589c33c1b5f6df463b2bd
Author: Jonas Bernoulli <jonas@bernoul.li>
Commit: Jonas Bernoulli <jonas@bernoul.li>

    magit-git-debug: Move definition
---
 lisp/magit-git.el | 40 ++++++++++++++++++++--------------------
 1 file changed, 20 insertions(+), 20 deletions(-)

diff --git a/lisp/magit-git.el b/lisp/magit-git.el
index ea702e0dd3..773ef6111b 100644
--- a/lisp/magit-git.el
+++ b/lisp/magit-git.el
@@ -205,26 +205,6 @@ purpose."
   :group 'magit-process
   :type '(repeat string))
 
-(defvar magit-git-debug nil
-  "Whether to enable additional reporting of git errors.
-
-Magit basically calls git for one of these two reasons: for
-side-effects or to do something with its standard output.
-
-When git is run for side-effects then its output, including error
-messages, go into the process buffer which is shown when using \
-\\<magit-status-mode-map>\\[magit-process].
-
-When git's output is consumed in some way, then it would be too
-expensive to also insert it into this buffer, but when this
-option is non-nil and git returns with a non-zero exit status,
-then at least its standard error is inserted into this buffer.
-
-This is only intended for debugging purposes.  Do not enable this
-permanently, that would negatively affect performance.
-
-Also see `magit-process-extreme-logging'.")
-
 (defcustom magit-prefer-remote-upstream nil
   "Whether to favor remote branches when reading the upstream branch.
 
@@ -280,6 +260,26 @@ framework ultimately determines how the collection is 
displayed."
 
 ;;; Git
 
+(defvar magit-git-debug nil
+  "Whether to enable additional reporting of git errors.
+
+Magit basically calls git for one of these two reasons: for
+side-effects or to do something with its standard output.
+
+When git is run for side-effects then its output, including error
+messages, go into the process buffer which is shown when using \
+\\<magit-status-mode-map>\\[magit-process].
+
+When git's output is consumed in some way, then it would be too
+expensive to also insert it into this buffer, but when this
+option is non-nil and git returns with a non-zero exit status,
+then at least its standard error is inserted into this buffer.
+
+This is only intended for debugging purposes.  Do not enable this
+permanently, that would negatively affect performance.
+
+Also see `magit-process-extreme-logging'.")
+
 (defvar magit--refresh-cache nil)
 
 (defmacro magit--with-refresh-cache (key &rest body)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]