diff options
| author | Jonas Bernoulli <jonas@bernoul.li> | 2025-11-05 22:29:53 +0100 |
|---|---|---|
| committer | Jonas Bernoulli <jonas@bernoul.li> | 2025-11-05 22:29:53 +0100 |
| commit | 8e9045656297ccace12a57eff07e50facadab0f5 (patch) | |
| tree | 43bb533be8df3f236070117f041e27f5181d6e0a /lisp/magit.el | |
| parent | a48e3176d5b4b4e7eea458e7fa95038da301d0e4 (diff) | |
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.
Diffstat (limited to 'lisp/magit.el')
| -rw-r--r-- | lisp/magit.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/magit.el b/lisp/magit.el index d73a168..962b444 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" |
