branch: elpa/magit
commit 8e9045656297ccace12a57eff07e50facadab0f5
Author: Jonas Bernoulli <[email protected]>
Commit: Jonas Bernoulli <[email protected]>

    Drop a space from autoload cookies
    
    The space (if any) between the keyword and form is not stripped
    when inserting the form into the autoloads file, which looks odd.
    
    In Emacs the number of autoload cookies with and without such a
    space, is almost the same, so that provides no guidance as to what
    should be preferred.  Go with what makes the aligner in me happy.
---
 lisp/magit-bisect.el          |  2 +-
 lisp/magit-blame.el           | 10 +++++-----
 lisp/magit-branch.el          |  4 ++--
 lisp/magit-bundle.el          |  4 ++--
 lisp/magit-clone.el           |  2 +-
 lisp/magit-commit.el          |  6 +++---
 lisp/magit-diff.el            |  4 ++--
 lisp/magit-ediff.el           |  2 +-
 lisp/magit-extras.el          |  2 +-
 lisp/magit-fetch.el           |  8 ++++----
 lisp/magit-files.el           |  2 +-
 lisp/magit-gitignore.el       |  2 +-
 lisp/magit-log.el             |  8 ++++----
 lisp/magit-merge.el           |  2 +-
 lisp/magit-notes.el           |  2 +-
 lisp/magit-patch.el           |  6 +++---
 lisp/magit-pull.el            |  6 +++---
 lisp/magit-push.el            | 10 +++++-----
 lisp/magit-refs.el            |  2 +-
 lisp/magit-remote.el          |  6 +++---
 lisp/magit-reset.el           |  2 +-
 lisp/magit-sequence.el        | 12 ++++++------
 lisp/magit-sparse-checkout.el |  2 +-
 lisp/magit-stash.el           |  4 ++--
 lisp/magit-submodule.el       | 14 +++++++-------
 lisp/magit-subtree.el         |  6 +++---
 lisp/magit-tag.el             |  2 +-
 lisp/magit-worktree.el        |  2 +-
 lisp/magit.el                 |  4 ++--
 29 files changed, 69 insertions(+), 69 deletions(-)

diff --git a/lisp/magit-bisect.el b/lisp/magit-bisect.el
index 6496510f90a..00e094ad895 100644
--- a/lisp/magit-bisect.el
+++ b/lisp/magit-bisect.el
@@ -53,7 +53,7 @@
 
 ;;; Commands
 
-;;;###autoload (autoload 'magit-bisect "magit-bisect" nil t)
+;;;###autoload(autoload 'magit-bisect "magit-bisect" nil t)
 (transient-define-prefix magit-bisect ()
   "Narrow in on the commit that introduced a bug."
   :man-page "git-bisect"
diff --git a/lisp/magit-blame.el b/lisp/magit-blame.el
index bd0b444f7db..078188c2b06 100644
--- a/lisp/magit-blame.el
+++ b/lisp/magit-blame.el
@@ -761,7 +761,7 @@ modes is toggled, then this mode also gets toggled 
automatically.
 
 ;;; Commands
 
-;;;###autoload (autoload 'magit-blame-echo "magit-blame" nil t)
+;;;###autoload(autoload 'magit-blame-echo "magit-blame" nil t)
 (transient-define-suffix magit-blame-echo (args)
   "For each line show the revision in which it was added.
 Show the information about the chunk at point in the echo area
@@ -785,7 +785,7 @@ not turn on `read-only-mode'."
     (read-only-mode -1)
     (magit-blame--update-overlays)))
 
-;;;###autoload (autoload 'magit-blame-addition "magit-blame" nil t)
+;;;###autoload(autoload 'magit-blame-addition "magit-blame" nil t)
 (transient-define-suffix magit-blame-addition (args)
   "For each line show the revision in which it was added."
   (interactive (list (magit-blame-arguments)))
@@ -793,7 +793,7 @@ not turn on `read-only-mode'."
   (magit-blame--pre-blame-setup  'addition)
   (magit-blame--run args))
 
-;;;###autoload (autoload 'magit-blame-removal "magit-blame" nil t)
+;;;###autoload(autoload 'magit-blame-removal "magit-blame" nil t)
 (transient-define-suffix magit-blame-removal (args)
   "For each line show the revision in which it was removed."
   :if-nil 'buffer-file-name
@@ -804,7 +804,7 @@ not turn on `read-only-mode'."
   (magit-blame--pre-blame-setup  'removal)
   (magit-blame--run args))
 
-;;;###autoload (autoload 'magit-blame-reverse "magit-blame" nil t)
+;;;###autoload(autoload 'magit-blame-reverse "magit-blame" nil t)
 (transient-define-suffix magit-blame-reverse (args)
   "For each line show the last revision in which it still exists."
   :if-nil 'buffer-file-name
@@ -941,7 +941,7 @@ instead of the hash, like `kill-ring-save' would."
 
 ;;; Popup
 
-;;;###autoload (autoload 'magit-blame "magit-blame" nil t)
+;;;###autoload(autoload 'magit-blame "magit-blame" nil t)
 (transient-define-prefix magit-blame ()
   "Show the commits that added or removed lines in the visited file."
   :man-page "git-blame"
diff --git a/lisp/magit-branch.el b/lisp/magit-branch.el
index 7e252d358b6..d7c29805779 100644
--- a/lisp/magit-branch.el
+++ b/lisp/magit-branch.el
@@ -204,7 +204,7 @@ has to be used to view and change branch related variables."
 
 ;;; Commands
 
-;;;###autoload (autoload 'magit-branch "magit" nil t)
+;;;###autoload(autoload 'magit-branch "magit" nil t)
 (transient-define-prefix magit-branch (branch)
   "Add, configure or remove a branch."
   :man-page "git-branch"
@@ -848,7 +848,7 @@ Also rename the respective reflog file."
 
 ;;; Configure
 
-;;;###autoload (autoload 'magit-branch-configure "magit-branch" nil t)
+;;;###autoload(autoload 'magit-branch-configure "magit-branch" nil t)
 (transient-define-prefix magit-branch-configure (branch)
   "Configure a branch."
   :man-page "git-branch"
diff --git a/lisp/magit-bundle.el b/lisp/magit-bundle.el
index 5c73957537a..9ff8c7116e8 100644
--- a/lisp/magit-bundle.el
+++ b/lisp/magit-bundle.el
@@ -33,7 +33,7 @@
 
 ;;; Commands
 
-;;;###autoload (autoload 'magit-bundle "magit-bundle" nil t)
+;;;###autoload(autoload 'magit-bundle "magit-bundle" nil t)
 (transient-define-prefix magit-bundle ()
   "Create or verify Git bundles."
   :man-page "git-bundle"
@@ -42,7 +42,7 @@
    ("v" "verify"     magit-bundle-verify)
    ("l" "list-heads" magit-bundle-list-heads)])
 
-;;;###autoload (autoload 'magit-bundle-import "magit-bundle" nil t)
+;;;###autoload(autoload 'magit-bundle-import "magit-bundle" nil t)
 (transient-define-prefix magit-bundle-create (&optional file refs args)
   "Create a bundle."
   :man-page "git-bundle"
diff --git a/lisp/magit-clone.el b/lisp/magit-clone.el
index dc7c827c761..83e9db2eeca 100644
--- a/lisp/magit-clone.el
+++ b/lisp/magit-clone.el
@@ -123,7 +123,7 @@ directory where the repository has been cloned."
 
 ;;; Commands
 
-;;;###autoload (autoload 'magit-clone "magit-clone" nil t)
+;;;###autoload(autoload 'magit-clone "magit-clone" nil t)
 (transient-define-prefix magit-clone (&optional transient)
   "Clone a repository."
   :man-page "git-clone"
diff --git a/lisp/magit-commit.el b/lisp/magit-commit.el
index c5a40146f4b..e7949239548 100644
--- a/lisp/magit-commit.el
+++ b/lisp/magit-commit.el
@@ -115,7 +115,7 @@ Also see https://github.com/magit/magit/issues/4132.";
 
 ;;; Popup
 
-;;;###autoload (autoload 'magit-commit "magit-commit" nil t)
+;;;###autoload(autoload 'magit-commit "magit-commit" nil t)
 (transient-define-prefix magit-commit ()
   "Create a new commit or replace an existing commit."
   :info-manual "(magit)Initiating a Commit"
@@ -539,7 +539,7 @@ is updated:
           (magit-commit-absorb-modules 'run commit))
         nil nil nil nil commit))))
 
-;;;###autoload (autoload 'magit-commit-absorb "magit-commit" nil t)
+;;;###autoload(autoload 'magit-commit-absorb "magit-commit" nil t)
 (transient-define-prefix magit-commit-absorb (phase commit args)
   "Spread staged changes across recent commits.
 With a prefix argument use a transient command to select infix
@@ -581,7 +581,7 @@ See `magit-commit-autofixup' for an alternative 
implementation."
 
 (transient-augment-suffix magit-commit-absorb :transient 'transient--do-exit)
 
-;;;###autoload (autoload 'magit-commit-autofixup "magit-commit" nil t)
+;;;###autoload(autoload 'magit-commit-autofixup "magit-commit" nil t)
 (transient-define-prefix magit-commit-autofixup (phase commit args)
   "Spread staged or unstaged changes across recent commits.
 
diff --git a/lisp/magit-diff.el b/lisp/magit-diff.el
index 1b3d568c5aa..1f57cec5957 100644
--- a/lisp/magit-diff.el
+++ b/lisp/magit-diff.el
@@ -935,7 +935,7 @@ and `:slant'."
    (magit-diff:--stat)
    (magit-diff:--show-signature)])
 
-;;;###autoload (autoload 'magit-diff "magit-diff" nil t)
+;;;###autoload(autoload 'magit-diff "magit-diff" nil t)
 (transient-define-prefix magit-diff ()
   "Show changes between different versions."
   :man-page "git-diff"
@@ -951,7 +951,7 @@ and `:slant'."
    [("c" "Show commit"   magit-show-commit)
     ("t" "Show stash"    magit-stash-show)]])
 
-;;;###autoload (autoload 'magit-diff-refresh "magit-diff" nil t)
+;;;###autoload(autoload 'magit-diff-refresh "magit-diff" nil t)
 (transient-define-prefix magit-diff-refresh ()
   "Change the arguments used for the diff(s) in the current buffer."
   :man-page "git-diff"
diff --git a/lisp/magit-ediff.el b/lisp/magit-ediff.el
index 0390d452397..015eade5583 100644
--- a/lisp/magit-ediff.el
+++ b/lisp/magit-ediff.el
@@ -115,7 +115,7 @@ recommend you do not further complicate that by enabling 
this.")
 
 (defvar magit-ediff-previous-winconf nil)
 
-;;;###autoload (autoload 'magit-ediff "magit-ediff" nil)
+;;;###autoload(autoload 'magit-ediff "magit-ediff" nil)
 (transient-define-prefix magit-ediff ()
   "Show differences using the Ediff package."
   :info-manual "(ediff)"
diff --git a/lisp/magit-extras.el b/lisp/magit-extras.el
index 9e17129ea0e..e5e198f1720 100644
--- a/lisp/magit-extras.el
+++ b/lisp/magit-extras.el
@@ -42,7 +42,7 @@
 ;;; Git Tools
 ;;;; Git-Mergetool
 
-;;;###autoload (autoload 'magit-git-mergetool "magit-extras" nil t)
+;;;###autoload(autoload 'magit-git-mergetool "magit-extras" nil t)
 (transient-define-prefix magit-git-mergetool (file args &optional transient)
   "Resolve conflicts in FILE using \"git mergetool --gui\".
 With a prefix argument allow changing ARGS using a transient
diff --git a/lisp/magit-fetch.el b/lisp/magit-fetch.el
index 4a38da728ba..bbd136aae3a 100644
--- a/lisp/magit-fetch.el
+++ b/lisp/magit-fetch.el
@@ -30,7 +30,7 @@
 
 ;;; Commands
 
-;;;###autoload (autoload 'magit-fetch "magit-fetch" nil t)
+;;;###autoload(autoload 'magit-fetch "magit-fetch" nil t)
 (transient-define-prefix magit-fetch ()
   "Fetch from another repository."
   :man-page "git-fetch"
@@ -58,7 +58,7 @@
   (run-hooks 'magit-credential-hook)
   (magit-run-git-async "fetch" remote args))
 
-;;;###autoload (autoload 'magit-fetch-from-pushremote "magit-fetch" nil t)
+;;;###autoload(autoload 'magit-fetch-from-pushremote "magit-fetch" nil t)
 (transient-define-suffix magit-fetch-from-pushremote (args)
   "Fetch from the current push-remote.
 
@@ -86,7 +86,7 @@ push-remote."
       (format "%s, replacing invalid" v))
      ((format "%s, setting that" v)))))
 
-;;;###autoload (autoload 'magit-fetch-from-upstream "magit-fetch" nil t)
+;;;###autoload(autoload 'magit-fetch-from-upstream "magit-fetch" nil t)
 (transient-define-suffix magit-fetch-from-upstream (remote args)
   "Fetch from the \"current\" remote, usually the upstream.
 
@@ -155,7 +155,7 @@ removed on the respective remote."
   (run-hooks 'magit-credential-hook)
   (magit-run-git-async "remote" "update"))
 
-;;;###autoload (autoload 'magit-fetch-modules "magit-fetch" nil t)
+;;;###autoload(autoload 'magit-fetch-modules "magit-fetch" nil t)
 (transient-define-prefix magit-fetch-modules (&optional transient args)
   "Fetch all populated submodules.
 
diff --git a/lisp/magit-files.el b/lisp/magit-files.el
index 38f4beba2fe..218376ec125 100644
--- a/lisp/magit-files.el
+++ b/lisp/magit-files.el
@@ -289,7 +289,7 @@ directory, while reading the FILENAME."
 
 ;;; File Dispatch
 
-;;;###autoload (autoload 'magit-file-dispatch "magit" nil t)
+;;;###autoload(autoload 'magit-file-dispatch "magit" nil t)
 (transient-define-prefix magit-file-dispatch ()
   "Invoke a Magit command that acts on the visited file.
 When invoked outside a file-visiting buffer, then fall back
diff --git a/lisp/magit-gitignore.el b/lisp/magit-gitignore.el
index ef2bc7a372e..8d2eaf29ae3 100644
--- a/lisp/magit-gitignore.el
+++ b/lisp/magit-gitignore.el
@@ -30,7 +30,7 @@
 
 ;;; Transient
 
-;;;###autoload (autoload 'magit-gitignore "magit-gitignore" nil t)
+;;;###autoload(autoload 'magit-gitignore "magit-gitignore" nil t)
 (transient-define-prefix magit-gitignore ()
   "Instruct Git to ignore a file or pattern."
   :man-page "gitignore"
diff --git a/lisp/magit-log.el b/lisp/magit-log.el
index 3e5b4fc9af2..286b02c948b 100644
--- a/lisp/magit-log.el
+++ b/lisp/magit-log.el
@@ -514,7 +514,7 @@ commits before and half after."
       (eq major-mode 'magit-log-mode)
     t))
 
-;;;###autoload (autoload 'magit-log "magit-log" nil t)
+;;;###autoload(autoload 'magit-log "magit-log" nil t)
 (transient-define-prefix magit-log ()
   "Show a commit or reference log."
   :man-page "git-log"
@@ -543,7 +543,7 @@ commits before and half after."
    ["Other"
     ("s" "shortlog"          magit-shortlog)]])
 
-;;;###autoload (autoload 'magit-log-refresh "magit-log" nil t)
+;;;###autoload(autoload 'magit-log-refresh "magit-log" nil t)
 (transient-define-prefix magit-log-refresh ()
   "Change the arguments used for the log(s) in the current buffer."
   :man-page "git-log"
@@ -676,7 +676,7 @@ commits before and half after."
   "Read a string from the user to pass as parameter to OPTION."
   (magit-read-string (format "Type a pattern to pass to %s" option)))
 
-;;;###autoload (autoload 'magit-log-current "magit-log" nil t)
+;;;###autoload(autoload 'magit-log-current "magit-log" nil t)
 (transient-define-suffix magit-log-current (&optional args files)
   "Show log for the current branch, or `HEAD' if no branch is checked out."
   :description (##if (magit-get-current-branch) "current" "HEAD")
@@ -989,7 +989,7 @@ of the current repository first; creating it if necessary."
 
 ;;;; Shortlog Commands
 
-;;;###autoload (autoload 'magit-shortlog "magit-log" nil t)
+;;;###autoload(autoload 'magit-shortlog "magit-log" nil t)
 (transient-define-prefix magit-shortlog ()
   "Show a history summary."
   :man-page "git-shortlog"
diff --git a/lisp/magit-merge.el b/lisp/magit-merge.el
index ae5a82038f5..4d276a5872e 100644
--- a/lisp/magit-merge.el
+++ b/lisp/magit-merge.el
@@ -33,7 +33,7 @@
 
 ;;; Commands
 
-;;;###autoload (autoload 'magit-merge "magit" nil t)
+;;;###autoload(autoload 'magit-merge "magit" nil t)
 (transient-define-prefix magit-merge ()
   "Merge branches."
   :man-page "git-merge"
diff --git a/lisp/magit-notes.el b/lisp/magit-notes.el
index d43be85ff58..2e7bf0b48ac 100644
--- a/lisp/magit-notes.el
+++ b/lisp/magit-notes.el
@@ -30,7 +30,7 @@
 
 ;;; Commands
 
-;;;###autoload (autoload 'magit-notes "magit" nil t)
+;;;###autoload(autoload 'magit-notes "magit" nil t)
 (transient-define-prefix magit-notes ()
   "Edit notes attached to commits."
   :man-page "git-notes"
diff --git a/lisp/magit-patch.el b/lisp/magit-patch.el
index 0d90363557f..7b0eea9ae97 100644
--- a/lisp/magit-patch.el
+++ b/lisp/magit-patch.el
@@ -52,7 +52,7 @@ the prefix argument."
 
 ;;; Commands
 
-;;;###autoload (autoload 'magit-patch "magit-patch" nil t)
+;;;###autoload(autoload 'magit-patch "magit-patch" nil t)
 (transient-define-prefix magit-patch ()
   "Create or apply patches."
   ["Actions"
@@ -62,7 +62,7 @@ the prefix argument."
     ("s"  "Save diff as patch" magit-patch-save)]
    [("r"  "Request pull"       magit-request-pull)]])
 
-;;;###autoload (autoload 'magit-patch-create "magit-patch" nil t)
+;;;###autoload(autoload 'magit-patch-create "magit-patch" nil t)
 (transient-define-prefix magit-patch-create (range args files)
   "Create patches for the commits in RANGE.
 When a single commit is given for RANGE, create a patch for the
@@ -236,7 +236,7 @@ which creates patches for all commits that are reachable 
from
   :argument "--output-directory="
   :reader #'transient-read-existing-directory)
 
-;;;###autoload (autoload 'magit-patch-apply "magit-patch" nil t)
+;;;###autoload(autoload 'magit-patch-apply "magit-patch" nil t)
 (transient-define-prefix magit-patch-apply (file &rest args)
   "Apply the patch file FILE."
   :man-page "git-apply"
diff --git a/lisp/magit-pull.el b/lisp/magit-pull.el
index 17401cd7321..507c695397c 100644
--- a/lisp/magit-pull.el
+++ b/lisp/magit-pull.el
@@ -38,7 +38,7 @@
 
 ;;; Commands
 
-;;;###autoload (autoload 'magit-pull "magit-pull" nil t)
+;;;###autoload(autoload 'magit-pull "magit-pull" nil t)
 (transient-define-prefix magit-pull ()
   "Pull from another repository."
   :man-page "git-pull"
@@ -78,7 +78,7 @@
 (defun magit-pull-arguments ()
   (transient-args 'magit-pull))
 
-;;;###autoload (autoload 'magit-pull-from-pushremote "magit-pull" nil t)
+;;;###autoload(autoload 'magit-pull-from-pushremote "magit-pull" nil t)
 (transient-define-suffix magit-pull-from-pushremote (args)
   "Pull from the push-remote of the current branch.
 
@@ -106,7 +106,7 @@ push-remote."
            (format "%s, replacing invalid" v))
           ((format "%s, setting that" v)))))
 
-;;;###autoload (autoload 'magit-pull-from-upstream "magit-pull" nil t)
+;;;###autoload(autoload 'magit-pull-from-upstream "magit-pull" nil t)
 (transient-define-suffix magit-pull-from-upstream (args)
   "Pull from the upstream of the current branch.
 
diff --git a/lisp/magit-push.el b/lisp/magit-push.el
index 3c8c806a512..24c25cb6b27 100644
--- a/lisp/magit-push.el
+++ b/lisp/magit-push.el
@@ -30,7 +30,7 @@
 
 ;;; Commands
 
-;;;###autoload (autoload 'magit-push "magit-push" nil t)
+;;;###autoload(autoload 'magit-push "magit-push" nil t)
 (transient-define-prefix magit-push ()
   "Push to another repository."
   :man-page "git-push"
@@ -73,7 +73,7 @@
     (magit-run-git-async "push" "-v" args remote
                          (format "%s:%s%s" branch namespace target))))
 
-;;;###autoload (autoload 'magit-push-current-to-pushremote "magit-push" nil t)
+;;;###autoload(autoload 'magit-push-current-to-pushremote "magit-push" nil t)
 (transient-define-suffix magit-push-current-to-pushremote (args)
   "Push the current branch to its push-remote.
 
@@ -109,7 +109,7 @@ argument the push-remote can be changed before pushed to 
it."
       (format "%s, replacing invalid" v))
      ((format "%s, setting that" v)))))
 
-;;;###autoload (autoload 'magit-push-current-to-upstream "magit-push" nil t)
+;;;###autoload(autoload 'magit-push-current-to-upstream "magit-push" nil t)
 (transient-define-suffix magit-push-current-to-upstream (args)
   "Push the current branch to its upstream branch.
 
@@ -263,7 +263,7 @@ branch as default."
   (run-hooks 'magit-credential-hook)
   (magit-run-git-async "push" remote ref args))
 
-;;;###autoload (autoload 'magit-push-implicitly "magit-push" nil t)
+;;;###autoload(autoload 'magit-push-implicitly "magit-push" nil t)
 (transient-define-suffix magit-push-implicitly (args)
   "Push somewhere without using an explicit refspec.
 
@@ -341,7 +341,7 @@ what this command will do.  To add it use something like:
             ("matching" (format "all matching to %s"
                                 (magit--propertize-face remote 'bold)))))))))
 
-;;;###autoload (autoload 'magit-push-to-remote "magit-push" nil t)
+;;;###autoload(autoload 'magit-push-to-remote "magit-push" nil t)
 (transient-define-suffix magit-push-to-remote (remote args)
   "Push to REMOTE without using an explicit refspec.
 The REMOTE is read in the minibuffer.
diff --git a/lisp/magit-refs.el b/lisp/magit-refs.el
index 8a53dba058f..a3371552125 100644
--- a/lisp/magit-refs.el
+++ b/lisp/magit-refs.el
@@ -329,7 +329,7 @@ Type \\[magit-reset] to reset `HEAD' to the commit at point.
 
 ;;; Commands
 
-;;;###autoload (autoload 'magit-show-refs "magit-refs" nil t)
+;;;###autoload(autoload 'magit-show-refs "magit-refs" nil t)
 (transient-define-prefix magit-show-refs (&optional transient)
   "List and compare references in a dedicated buffer."
   :man-page "git-branch"
diff --git a/lisp/magit-remote.el b/lisp/magit-remote.el
index afcaeea47ef..42d2fcd826a 100644
--- a/lisp/magit-remote.el
+++ b/lisp/magit-remote.el
@@ -62,7 +62,7 @@ has to be used to view and change remote related variables."
 
 ;;; Commands
 
-;;;###autoload (autoload 'magit-remote "magit-remote" nil t)
+;;;###autoload(autoload 'magit-remote "magit-remote" nil t)
 (transient-define-prefix magit-remote (remote)
   "Add, configure or remove a remote."
   :man-page "git-remote"
@@ -253,7 +253,7 @@ Delete the symbolic-ref \"refs/remotes/<remote>/HEAD\"."
   (interactive (list (magit-read-remote "Unset HEAD for remote")))
   (magit-run-git "remote" "set-head" remote "--delete"))
 
-;;;###autoload (autoload 'magit-update-default-branch "magit-remote" nil t)
+;;;###autoload(autoload 'magit-update-default-branch "magit-remote" nil t)
 (transient-define-suffix magit-update-default-branch ()
   "Update name of the default branch after upstream changed it."
   :description "Update default branch"
@@ -305,7 +305,7 @@ refspec."
 
 ;;; Configure
 
-;;;###autoload (autoload 'magit-remote-configure "magit-remote" nil t)
+;;;###autoload(autoload 'magit-remote-configure "magit-remote" nil t)
 (transient-define-prefix magit-remote-configure (remote)
   "Configure a remote."
   :man-page "git-remote"
diff --git a/lisp/magit-reset.el b/lisp/magit-reset.el
index 4e8af09c595..246bccc2ad8 100644
--- a/lisp/magit-reset.el
+++ b/lisp/magit-reset.el
@@ -30,7 +30,7 @@
 
 ;;; Commands
 
-;;;###autoload (autoload 'magit-reset "magit" nil t)
+;;;###autoload(autoload 'magit-reset "magit" nil t)
 (transient-define-prefix magit-reset ()
   "Reset the `HEAD', index and/or worktree to a previous state."
   :man-page "git-reset"
diff --git a/lisp/magit-sequence.el b/lisp/magit-sequence.el
index 97f1563431e..e06d333eec1 100644
--- a/lisp/magit-sequence.el
+++ b/lisp/magit-sequence.el
@@ -131,7 +131,7 @@ This discards all changes made since the sequence started."
 (defvar magit-perl-executable "perl"
   "The Perl executable.")
 
-;;;###autoload (autoload 'magit-cherry-pick "magit-sequence" nil t)
+;;;###autoload(autoload 'magit-cherry-pick "magit-sequence" nil t)
 (transient-define-prefix magit-cherry-pick ()
   "Apply or transplant commits."
   :man-page "git-cherry-pick"
@@ -365,7 +365,7 @@ the process manually."
 
 ;;; Revert
 
-;;;###autoload (autoload 'magit-revert "magit-sequence" nil t)
+;;;###autoload(autoload 'magit-revert "magit-sequence" nil t)
 (transient-define-prefix magit-revert ()
   "Revert existing commits, with or without creating new commits."
   :man-page "git-revert"
@@ -422,7 +422,7 @@ without prompting."
 
 ;;; Patch
 
-;;;###autoload (autoload 'magit-am "magit-sequence" nil t)
+;;;###autoload(autoload 'magit-am "magit-sequence" nil t)
 (transient-define-prefix magit-am ()
   "Apply patches received by email."
   :man-page "git-am"
@@ -516,7 +516,7 @@ This discards all changes made since the sequence started."
 
 ;;; Rebase
 
-;;;###autoload (autoload 'magit-rebase "magit-sequence" nil t)
+;;;###autoload(autoload 'magit-rebase "magit-sequence" nil t)
 (transient-define-prefix magit-rebase ()
   "Transplant commits and/or modify existing commits."
   :man-page "git-rebase"
@@ -584,7 +584,7 @@ This discards all changes made since the sequence started."
 (defun magit-git-rebase (target args)
   (magit-run-git-sequencer "rebase" args target))
 
-;;;###autoload (autoload 'magit-rebase-onto-pushremote "magit-sequence" nil t)
+;;;###autoload(autoload 'magit-rebase-onto-pushremote "magit-sequence" nil t)
 (transient-define-suffix magit-rebase-onto-pushremote (args)
   "Rebase the current branch onto its push-remote branch.
 
@@ -598,7 +598,7 @@ push-remote."
                (magit--select-push-remote "rebase onto that")))
     (magit-git-rebase (concat remote "/" branch) args)))
 
-;;;###autoload (autoload 'magit-rebase-onto-upstream "magit-sequence" nil t)
+;;;###autoload(autoload 'magit-rebase-onto-upstream "magit-sequence" nil t)
 (transient-define-suffix magit-rebase-onto-upstream (args)
   "Rebase the current branch onto its upstream branch.
 
diff --git a/lisp/magit-sparse-checkout.el b/lisp/magit-sparse-checkout.el
index 8fb9e59aafc..34bccf191e4 100644
--- a/lisp/magit-sparse-checkout.el
+++ b/lisp/magit-sparse-checkout.el
@@ -54,7 +54,7 @@ See the `git sparse-checkout' manpage for details about
 
 ;;; Commands
 
-;;;###autoload (autoload 'magit-sparse-checkout "magit-sparse-checkout" nil t)
+;;;###autoload(autoload 'magit-sparse-checkout "magit-sparse-checkout" nil t)
 (transient-define-prefix magit-sparse-checkout ()
   "Create and manage sparse checkouts."
   :man-page "git-sparse-checkout"
diff --git a/lisp/magit-stash.el b/lisp/magit-stash.el
index 456cb624713..7a3e7dde102 100644
--- a/lisp/magit-stash.el
+++ b/lisp/magit-stash.el
@@ -87,7 +87,7 @@ AUTHOR-WIDTH has to be an integer.  When the name of the 
author
 
 ;;; Commands
 
-;;;###autoload (autoload 'magit-stash "magit-stash" nil t)
+;;;###autoload(autoload 'magit-stash "magit-stash" nil t)
 (transient-define-prefix magit-stash ()
   "Stash uncommitted changes."
   :man-page "git-stash"
@@ -234,7 +234,7 @@ while two prefix arguments are equivalent to `--all'."
   (magit-stash-save (concat "WIP on " (magit-stash-summary))
                     index worktree untracked refresh t))
 
-;;;###autoload (autoload 'magit-stash-push "magit-stash" nil t)
+;;;###autoload(autoload 'magit-stash-push "magit-stash" nil t)
 (transient-define-prefix magit-stash-push (&optional transient args)
   "Create stash using \"git stash push\".
 
diff --git a/lisp/magit-submodule.el b/lisp/magit-submodule.el
index 0c0a4d6a10b..c3c6a88f90f 100644
--- a/lisp/magit-submodule.el
+++ b/lisp/magit-submodule.el
@@ -158,7 +158,7 @@ and also setting this variable to t will lead to tears."
 
 ;;; Popup
 
-;;;###autoload (autoload 'magit-submodule "magit-submodule" nil t)
+;;;###autoload(autoload 'magit-submodule "magit-submodule" nil t)
 (transient-define-prefix magit-submodule ()
   "Act on a submodule."
   :man-page "git-submodule"
@@ -205,7 +205,7 @@ and also setting this variable to t will lead to tears."
                           (propertize "|" 'face 
'transient-inactive-argument))))
      (cl-call-next-method obj))))
 
-;;;###autoload (autoload 'magit-submodule-add "magit-submodule" nil t)
+;;;###autoload(autoload 'magit-submodule-add "magit-submodule" nil t)
 (transient-define-suffix magit-submodule-add (url &optional path name args)
   "Add the repository at URL as a module.
 
@@ -262,7 +262,7 @@ it is nil, then PATH also becomes the name."
                    (magit-git-lines "config" "--list" "-f" ".gitmodules"))
          (if prefer-short name path)))))
 
-;;;###autoload (autoload 'magit-submodule-register "magit-submodule" nil t)
+;;;###autoload(autoload 'magit-submodule-register "magit-submodule" nil t)
 (transient-define-suffix magit-submodule-register (modules)
   "Register MODULES.
 
@@ -281,7 +281,7 @@ single module from the user."
   (magit-with-toplevel
     (magit-run-git-async "submodule" "init" "--" modules)))
 
-;;;###autoload (autoload 'magit-submodule-populate "magit-submodule" nil t)
+;;;###autoload(autoload 'magit-submodule-populate "magit-submodule" nil t)
 (transient-define-suffix magit-submodule-populate (modules args)
   "Create MODULES working directories, checking out the recorded commits.
 
@@ -300,7 +300,7 @@ single module from the user."
   (magit-with-toplevel
     (magit-run-git-async "submodule" "update" "--init" args "--" modules)))
 
-;;;###autoload (autoload 'magit-submodule-update "magit-submodule" nil t)
+;;;###autoload(autoload 'magit-submodule-update "magit-submodule" nil t)
 (transient-define-suffix magit-submodule-update (modules args)
   "Update MODULES by checking out the recorded commits.
 
@@ -323,7 +323,7 @@ single module from the user."
   (magit-with-toplevel
     (magit-run-git-async "submodule" "update" args "--" modules)))
 
-;;;###autoload (autoload 'magit-submodule-synchronize "magit-submodule" nil t)
+;;;###autoload(autoload 'magit-submodule-synchronize "magit-submodule" nil t)
 (transient-define-suffix magit-submodule-synchronize (modules args)
   "Synchronize url configuration of MODULES.
 
@@ -339,7 +339,7 @@ single module from the user."
   (magit-with-toplevel
     (magit-run-git-async "submodule" "sync" args "--" modules)))
 
-;;;###autoload (autoload 'magit-submodule-unpopulate "magit-submodule" nil t)
+;;;###autoload(autoload 'magit-submodule-unpopulate "magit-submodule" nil t)
 (transient-define-suffix magit-submodule-unpopulate (modules args)
   "Remove working directories of MODULES.
 
diff --git a/lisp/magit-subtree.el b/lisp/magit-subtree.el
index 5f2bf3c5286..a94d0559d0b 100644
--- a/lisp/magit-subtree.el
+++ b/lisp/magit-subtree.el
@@ -33,7 +33,7 @@
 
 ;;; Commands
 
-;;;###autoload (autoload 'magit-subtree "magit-subtree" nil t)
+;;;###autoload(autoload 'magit-subtree "magit-subtree" nil t)
 (transient-define-prefix magit-subtree ()
   "Import or export subtrees."
   :man-page "git-subtree"
@@ -41,7 +41,7 @@
    ("i" "Import" magit-subtree-import)
    ("e" "Export" magit-subtree-export)])
 
-;;;###autoload (autoload 'magit-subtree-import "magit-subtree" nil t)
+;;;###autoload(autoload 'magit-subtree-import "magit-subtree" nil t)
 (transient-define-prefix magit-subtree-import ()
   "Import subtrees."
   :man-page "git-subtree"
@@ -55,7 +55,7 @@
    [("m" "Merge"      magit-subtree-merge)
     ("f" "Pull"       magit-subtree-pull)]])
 
-;;;###autoload (autoload 'magit-subtree-export "magit-subtree" nil t)
+;;;###autoload(autoload 'magit-subtree-export "magit-subtree" nil t)
 (transient-define-prefix magit-subtree-export ()
   "Export subtrees."
   :man-page "git-subtree"
diff --git a/lisp/magit-tag.el b/lisp/magit-tag.el
index b73b29b7fcd..3d012d8b80b 100644
--- a/lisp/magit-tag.el
+++ b/lisp/magit-tag.el
@@ -33,7 +33,7 @@
 
 ;;; Commands
 
-;;;###autoload (autoload 'magit-tag "magit" nil t)
+;;;###autoload(autoload 'magit-tag "magit" nil t)
 (transient-define-prefix magit-tag ()
   "Create or delete a tag."
   :man-page "git-tag"
diff --git a/lisp/magit-worktree.el b/lisp/magit-worktree.el
index 085f99b721e..4f6859c5e04 100644
--- a/lisp/magit-worktree.el
+++ b/lisp/magit-worktree.el
@@ -125,7 +125,7 @@ just \"PREFIX_\".  Always forward PROMPT as-is."
 
 ;;; Commands
 
-;;;###autoload (autoload 'magit-worktree "magit-worktree" nil t)
+;;;###autoload(autoload 'magit-worktree "magit-worktree" nil t)
 (transient-define-prefix magit-worktree ()
   "Act on a worktree."
   :man-page "git-worktree"
diff --git a/lisp/magit.el b/lisp/magit.el
index d73a1680100..962b4440843 100644
--- a/lisp/magit.el
+++ b/lisp/magit.el
@@ -324,7 +324,7 @@ already been run."
 
 ;;; Dispatch Popup
 
-;;;###autoload (autoload 'magit-dispatch "magit" nil t)
+;;;###autoload(autoload 'magit-dispatch "magit" nil t)
 (transient-define-prefix magit-dispatch ()
   "Invoke a Magit command from a list of available commands."
   :info-manual "(magit)Top"
@@ -415,7 +415,7 @@ This affects `magit-git-command', 
`magit-git-command-topdir',
 
 (defvar magit-git-command-history nil)
 
-;;;###autoload (autoload 'magit-run "magit" nil t)
+;;;###autoload(autoload 'magit-run "magit" nil t)
 (transient-define-prefix magit-run ()
   "Run git or another command, or launch a graphical utility."
   [["Run git subcommand"

Reply via email to